mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-01-29 17:22:55 +08:00
implement thread_sleep for api_none.cpp
This commit is contained in:
parent
60c3e82110
commit
f4d46e3504
3
.gitignore
vendored
3
.gitignore
vendored
@ -42,4 +42,5 @@ libgui.a
|
||||
# Keil
|
||||
GuiLite.uvguix.*
|
||||
GuiLite.uvoptx
|
||||
Objects
|
||||
Objects
|
||||
DebugConfig
|
@ -64,9 +64,10 @@ void create_thread(unsigned long* thread_id, void* attr, void *(*start_routine)
|
||||
log_out("Not support now");
|
||||
}
|
||||
|
||||
extern "C" void delay_ms(unsigned short nms);
|
||||
void thread_sleep(unsigned int milli_seconds)
|
||||
{
|
||||
log_out("Not support now");
|
||||
{//MCU alway implemnet driver code in APP.
|
||||
delay_ms(milli_seconds);
|
||||
}
|
||||
|
||||
int build_bmp(const char *filename, unsigned int width, unsigned int height, unsigned char *data)
|
||||
|
Loading…
x
Reference in New Issue
Block a user