mongoose/examples/stm32/nucleo-h743zi-make-baremetal-builtin/main.c

79 lines
2.8 KiB
C
Raw Normal View History

2023-02-04 03:32:38 +08:00
// Copyright (c) 2023 Cesanta Software Limited
// All rights reserved
2023-02-09 04:14:39 +08:00
#include "hal.h"
2023-05-31 03:17:46 +08:00
#include "mongoose.h"
2023-05-26 22:48:20 +08:00
#include "net.h"
2023-02-09 04:14:39 +08:00
#define BLINK_PERIOD_MS 1000 // LED blinking period in millis
2023-02-09 04:14:39 +08:00
static volatile uint64_t s_ticks; // Milliseconds since boot
void SysTick_Handler(void) { // SyStick IRQ handler, triggered every 1ms
s_ticks++;
}
2023-02-09 04:14:39 +08:00
uint64_t mg_millis(void) { // Let Mongoose use our uptime function
return s_ticks; // Return number of milliseconds since boot
}
2023-02-04 03:32:38 +08:00
2023-02-09 04:14:39 +08:00
void mg_random(void *buf, size_t len) { // Use on-board RNG
for (size_t n = 0; n < len; n += sizeof(uint32_t)) {
uint32_t r = rng_read();
memcpy((char *) buf + n, &r, n + sizeof(r) > len ? len - n : sizeof(r));
}
}
2023-02-04 03:32:38 +08:00
2023-02-09 04:14:39 +08:00
static void timer_fn(void *arg) {
gpio_toggle(LED); // Blink LED
struct mg_tcpip_if *ifp = arg; // And show
const char *names[] = {"down", "up", "req", "ready"}; // network stats
2023-02-09 04:14:39 +08:00
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));
}
2023-02-04 03:32:38 +08:00
2023-02-09 04:14:39 +08:00
int main(void) {
gpio_output(LED); // Setup green LED
uart_init(UART_DEBUG, 115200); // Initialise debug printf
ethernet_init(); // Initialise ethernet pins
2023-02-09 04:14:39 +08:00
MG_INFO(("Chip revision: %c, max cpu clock: %u MHz", chiprev(),
(chiprev() == 'V') ? 480 : 400));
MG_INFO(("Starting, CPU freq %g MHz", (double) SystemCoreClock / 1000000));
struct mg_mgr mgr; // Initialise
mg_mgr_init(&mgr); // Mongoose event manager
mg_log_set(MG_LL_DEBUG); // Set log level
// If we don't have any OTA info saved, e.g. we're pre-flashed, then
// call mg_ota_commit() to mark this firmware as reliable
if (mg_ota_status(MG_FIRMWARE_CURRENT) == MG_OTA_UNAVAILABLE) mg_ota_commit();
2023-02-04 03:32:38 +08:00
// Initialise Mongoose network stack
struct mg_tcpip_driver_stm32h_data driver_data = {.mdc_cr = 4};
2023-02-09 04:14:39 +08:00
struct mg_tcpip_if mif = {.mac = GENERATE_LOCALLY_ADMINISTERED_MAC(),
2023-07-19 00:46:52 +08:00
// 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)),
2023-02-09 04:14:39 +08:00
.driver = &mg_tcpip_driver_stm32h,
.driver_data = &driver_data};
mg_tcpip_init(&mgr, &mif);
2023-02-09 04:14:39 +08:00
mg_timer_add(&mgr, BLINK_PERIOD_MS, MG_TIMER_REPEAT, timer_fn, &mif);
2023-02-04 03:32:38 +08:00
2023-02-09 04:14:39 +08:00
MG_INFO(("MAC: %M. Waiting for IP...", mg_print_mac, mif.mac));
2023-03-09 22:25:02 +08:00
while (mif.state != MG_TCPIP_STATE_READY) {
mg_mgr_poll(&mgr, 0);
}
2023-02-04 03:32:38 +08:00
MG_INFO(("Initialising application..."));
2023-05-26 22:48:20 +08:00
web_init(&mgr);
2023-02-04 03:32:38 +08:00
MG_INFO(("Starting event loop"));
2023-02-09 04:14:39 +08:00
for (;;) {
mg_mgr_poll(&mgr, 0);
}
2023-02-04 03:32:38 +08:00
return 0;
}