Commit 4bdec5c1 authored by Dmitry Frank's avatar Dmitry Frank Committed by Cesanta Bot

Rename mongoose-iot to mongoose-os

URLs like mongoose-iot.com are left intact

PUBLISHED_FROM=b8502b163c26a2cb54598db57ba094333fe7cf54
parent fa39d2f2
/*****************************************************************************
* app.ld
*
* GCC Linker script for Mongoose IoT. Based on TI's example "blinky.ld".
* GCC Linker script for Mongoose OS. Based on TI's example "blinky.ld".
*
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
*
......
......@@ -10,7 +10,7 @@
// #define WIFI_STA_SSID "YourWiFi"
// #define WIFI_STA_PASS "YourPass"
#define MIOT_TASK_PRIORITY 3
#define MGOS_TASK_PRIORITY 3
#define MG_TASK_STACK_SIZE 8192
#include <stdbool.h>
......@@ -214,7 +214,7 @@ int main(void) {
LOG(LL_ERROR, ("Failed to create SL task"));
}
if (!mg_start_task(MIOT_TASK_PRIORITY, MG_TASK_STACK_SIZE, mg_init)) {
if (!mg_start_task(MGOS_TASK_PRIORITY, MG_TASK_STACK_SIZE, mg_init)) {
LOG(LL_ERROR, ("Failed to create MG task"));
}
......
......@@ -44,7 +44,7 @@
#define CONSOLE_BAUD_RATE 115200
#define CONSOLE_UART UARTA0_BASE
#define CONSOLE_UART_PERIPH PRCM_UARTA0
#define MIOT_TASK_PRIORITY 3
#define MGOS_TASK_PRIORITY 3
#define MG_TASK_STACK_SIZE 8192
#define BM222_ADDR 0x18
......@@ -264,7 +264,7 @@ int main(void) {
LOG(LL_ERROR, ("Failed to create SL task"));
}
if (!mg_start_task(MIOT_TASK_PRIORITY, MG_TASK_STACK_SIZE, mg_init)) {
if (!mg_start_task(MGOS_TASK_PRIORITY, MG_TASK_STACK_SIZE, mg_init)) {
LOG(LL_ERROR, ("Failed to create MG task"));
}
......
......@@ -29,7 +29,7 @@ _ssize_t _write_r(struct _reent *r, int fd, void *buf, size_t len) {
/*
* You'll need to implement _open_r and friends if you want file operations. See
* https://github.com/cesanta/mongoose-iot/blob/master/fw/platforms/esp8266/user/esp_fs.c
* https://github.com/cesanta/mongoose-os/blob/master/fw/platforms/esp8266/user/esp_fs.c
* for SPIFFS-based implementation.
*/
......
......@@ -13,7 +13,7 @@
#define MG_LISTEN_ADDR "80"
#define MG_TASK_STACK_SIZE 4096
#define MIOT_TASK_PRIORITY 1
#define MGOS_TASK_PRIORITY 1
void uart_div_modify(int uart_no, unsigned int freq);
......@@ -105,5 +105,5 @@ void user_init(void) {
uart_div_modify(0, UART_CLK_FREQ / 115200);
xTaskCreate(mg_task, (const signed char *) "mongoose", MG_TASK_STACK_SIZE,
NULL, MIOT_TASK_PRIORITY, &s_mg_task_handle);
NULL, MGOS_TASK_PRIORITY, &s_mg_task_handle);
}
......@@ -10,7 +10,7 @@
// #define WIFI_STA_SSID "YourWiFi"
// #define WIFI_STA_PASS "YourPass"
#define MIOT_TASK_PRIORITY 3
#define MGOS_TASK_PRIORITY 3
#define MG_TASK_STACK_SIZE 8192
#include <stdbool.h>
......@@ -163,7 +163,7 @@ int main(void) {
cs_log_set_level(LL_INFO);
cs_log_set_file(stdout);
if (!mg_start_task(MIOT_TASK_PRIORITY, MG_TASK_STACK_SIZE, mg_init)) {
if (!mg_start_task(MGOS_TASK_PRIORITY, MG_TASK_STACK_SIZE, mg_init)) {
LOG(LL_ERROR, ("Error starting Mongoose task"));
return 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment