feat: Remove the use of os_printf in SDK

This commit is contained in:
Wu Jian Gang
2018-05-24 19:52:43 +08:00
parent c7e5bb4a39
commit 291c94b501
17 changed files with 144 additions and 144 deletions

View File

@ -122,7 +122,7 @@ void hw_test_timer_cb(void)
if ((WDEV_NOW() - tick_now2) >= 1000000) {
static uint32_t idx = 1;
tick_now2 = WDEV_NOW();
os_printf("b%u:%d\n", idx++, j);
printf("b%u:%d\n", idx++, j);
j = 0;
}