Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
examples/power, examples/uart_loopback: fix build warnings
power_main.c:210:49: warning: passing argument 4 of 'task_create' from incompatible pointer type Fix: function 'start_pm_test(void)' must be of 'main_t' type. uart_loopback.c:97:12: warning: assignment to 'char *' from incompatible pointer type Fix: assignment to pointer 'char *read_ptr' should be typecast to 'char *' - return statement in function 'uart_loopback_task' was missing. - removed unused variable 'ret' in function 'uart_loopback_main'
- Loading branch information