mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
77 lines
2.5 KiB
C
77 lines
2.5 KiB
C
// Copyright (c) 2024 Cesanta Software Limited
|
|
// All rights reserved
|
|
|
|
#include "hal.h"
|
|
#include "mongoose.h"
|
|
#include "net.h"
|
|
|
|
#define BLINK_PERIOD_MS 1000 // LED blinking period in millis
|
|
|
|
// workaround optimizer somehow causing SysTick to fire before FreeRTOS has
|
|
// fully initialized
|
|
extern void xPortSysTickHandler(void);
|
|
void SysTick_Handler(void) {
|
|
if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED)
|
|
xPortSysTickHandler();
|
|
}
|
|
|
|
static void timer_fn(void *arg) {
|
|
struct mg_tcpip_if *ifp = arg; // And show
|
|
const char *names[] = {"down", "up", "req", "ready"}; // network stats
|
|
MG_INFO(("Ethernet: %s, IP: %M, rx:%u, tx:%u, dr:%u, er:%u",
|
|
names[ifp->state], mg_print_ip4, &ifp->ip, ifp->nrecv, ifp->nsent,
|
|
ifp->ndrop, ifp->nerr));
|
|
}
|
|
|
|
static void server(void *args) {
|
|
struct mg_mgr mgr; // Initialise Mongoose event manager
|
|
mg_mgr_init(&mgr); // and attach it to the interface
|
|
mg_log_set(MG_LL_DEBUG); // Set log level
|
|
|
|
// Initialise Mongoose network stack
|
|
ethernet_init(); // Initialise ethernet pins
|
|
struct mg_tcpip_driver_imxrt_data driver_data = {.mdc_cr = 24, .phy_addr = 3};
|
|
struct mg_tcpip_if mif = {.mac = GENERATE_LOCALLY_ADMINISTERED_MAC(),
|
|
// Uncomment below for static configuration:
|
|
// .ip = mg_htonl(MG_U32(192, 168, 0, 223)),
|
|
// .mask = mg_htonl(MG_U32(255, 255, 255, 0)),
|
|
// .gw = mg_htonl(MG_U32(192, 168, 0, 1)),
|
|
.driver = &mg_tcpip_driver_imxrt,
|
|
.driver_data = &driver_data};
|
|
mg_tcpip_init(&mgr, &mif);
|
|
mg_timer_add(&mgr, BLINK_PERIOD_MS, MG_TIMER_REPEAT, timer_fn, &mif);
|
|
|
|
MG_INFO(("MAC: %M. Waiting for IP...", mg_print_mac, mif.mac));
|
|
while (mif.state != MG_TCPIP_STATE_READY) {
|
|
mg_mgr_poll(&mgr, 0);
|
|
}
|
|
|
|
MG_INFO(("Initialising application..."));
|
|
web_init(&mgr);
|
|
|
|
MG_INFO(("Starting event loop"));
|
|
for (;;) mg_mgr_poll(&mgr, 1); // Infinite event loop
|
|
(void) args;
|
|
}
|
|
|
|
static void blinker(void *args) {
|
|
gpio_output(LED); // Setup blue LED
|
|
for (;;) {
|
|
gpio_toggle(LED);
|
|
vTaskDelay(pdMS_TO_TICKS(BLINK_PERIOD_MS));
|
|
}
|
|
(void) args;
|
|
}
|
|
|
|
int main(void) {
|
|
uart_init(UART_DEBUG, 115200); // Initialise UART
|
|
|
|
// Start tasks. NOTE: stack sizes are in 32-bit words
|
|
xTaskCreate(blinker, "blinker", 128, ":)", configMAX_PRIORITIES - 1, NULL);
|
|
xTaskCreate(server, "server", 2048, 0, configMAX_PRIORITIES - 1, NULL);
|
|
|
|
vTaskStartScheduler(); // This blocks
|
|
return 0;
|
|
}
|
|
|