Upgrade to FreeRTOS v9.0.0

This commit is contained in:
hyneko1 2016-07-20 22:37:36 +00:00
parent 22c480b583
commit c9c69178ff
53 changed files with 20817 additions and 13816 deletions

View file

@ -50,7 +50,7 @@ static void tftp_send_error(struct netconn *nc, int err_code, const char *err_ms
void ota_tftp_init_server(int listen_port)
{
xTaskCreate(tftp_task, (signed char *)"tftpOTATask", 512, (void *)listen_port, 2, NULL);
xTaskCreate(tftp_task, (const char * const)"tftpOTATask", 512, (void *)listen_port, 2, NULL);
}
err_t ota_tftp_download(const char *server, int port, const char *filename,