libc: Redefine int32_t/uint32_t as 'int' not 'long'
libc built from projectgus/newlib-xtensa@0077776963 Closes #42
This commit is contained in:
parent
920ee8bf85
commit
7ed064a750
10 changed files with 18 additions and 186 deletions
|
@ -25,7 +25,7 @@ void task2(void *pvParameters)
|
|||
while(1) {
|
||||
uint32_t count;
|
||||
if(xQueueReceive(*queue, &count, 1000)) {
|
||||
printf("Got %lu\n", count);
|
||||
printf("Got %u\n", count);
|
||||
} else {
|
||||
printf("No msg :(\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue