Merge wifi branch commit '588d384393536a040f899b382890316c56061b6a' into feature/wifi-stage-one

This commit is contained in:
Angus Gratton
2016-09-02 11:14:27 +10:00
25 changed files with 540 additions and 300 deletions

View File

@@ -35,7 +35,7 @@ overflow handler also is in here.
*/
#if !CONFIG_FREERTOS_PANIC_SILENT_REBOOT
//os_printf may be broken, so we fix our own printing fns...
//printf may be broken, so we fix our own printing fns...
inline static void panicPutchar(char c) {
while (((READ_PERI_REG(UART_STATUS_REG(0))>>UART_TXFIFO_CNT_S)&UART_TXFIFO_CNT)>=126) ;
WRITE_PERI_REG(UART_FIFO_REG(0), c);