1 Star 0 Fork 7

xingzai2013/WS2812FX_C_Lang

forked from dma/WS2812FX_C_Lang 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
arduino_api.c 590 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
arduino.h еIJֽӿ
*/
#include "arduino_api.h"
// #include <string.h>
#include <stdlib.h>
// #include "stm32g0xx_ll_gpio.h"
// #include "user_hw_init.h"
// #include "tos_k.h"
uint32_t arduino_millis(void)
{
return HAL_GetTick();
}
void arduino_delay(uint32_t ms)
{
tos_sleep_ms(ms);
// tos_task_delay(tos_millisec2tick(31));
}
int32_t arduino_random(int32_t max)
{
srand(arduino_millis());
return rand() % max;
}
int32_t arduino_random_at(int32_t min, int32_t max)
{
srand(arduino_millis());
return min + rand() % (max - min);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/xingzai2013/ws2812fx_c_lang.git
[email protected]:xingzai2013/ws2812fx_c_lang.git
xingzai2013
ws2812fx_c_lang
WS2812FX_C_Lang
master

搜索帮助