ble_mesh: Replace zephyr integer types with C99 types [Zephyr]

This commit is contained in:
lly
2020-12-07 17:03:11 +08:00
parent 162e11cff3
commit b77563abb0
109 changed files with 4196 additions and 4212 deletions

View File

@@ -8,7 +8,7 @@
#include "mesh_kernel.h"
void k_sleep(s32_t duration)
void k_sleep(int32_t duration)
{
vTaskDelay(duration / portTICK_PERIOD_MS);
}