mongoose/examples/ti/ek-tm4c1294xl-baremetal/README.md

48 lines
1.6 KiB
Markdown
Raw Normal View History

2022-11-11 05:44:53 +08:00
# Baremetal webserver on EK-TM4C1294XL
This firmware uses experimental TCP/IP stack of the Mongoose Network Library,
which implements the following:
- A complete [HTTP device dashboard](../../device-dashboard) with:
- User authentication
- Real-time device data graph
- Coninfiguration display and update
- MQTT communication with a remote MQTT server
- No dependencies: no HAL, no CMSIS, no RTOS
- Hand-written [mcu.h](mcu.h) header based on the [datasheet](https://www.ti.com/lit/pdf/spms433)
- Interrupt-driven Ethernet driver
2022-11-11 05:44:53 +08:00
- LED blinky, based on SysTick interrupt
- User button handler, turns off/on an LED, based on GPIO IRQs (interrupt-driven)
- HardFault handler alternate blinks LEDs
- Debug log on UART0 (ICDI)
## Requirements
- [GNU make](http://mongoose.ws/tutorials/tools/#gnu-make)
- [ARM GCC](http://mongoose.ws/tutorials/tools/#arm-gcc)
- [Uniflash](https://mongoose.ws/tutorials/ti/ek-tm4c1294xl-baremetal/#build-and-run) for flashing
2023-01-21 02:06:03 +08:00
The links above will send you to tutorials on how to install each of those tools in your workstation for Linux, Mac, and Windows.
2022-11-11 05:44:53 +08:00
## Usage
Plugin your board into USB, and attach an Ethernet cable.
2022-11-19 05:06:48 +08:00
To build:
2022-11-11 05:44:53 +08:00
```sh
$ make clean build
2022-11-11 05:44:53 +08:00
```
2022-11-19 05:06:48 +08:00
To flash: use Uniflash
2022-11-11 05:44:53 +08:00
To see debug log, use any serial monitor program like `picocom` at 115200 bps and configure it to insert carriage returns after line feeds:
```sh
$ picocom /dev/ttyACM0 -i -b 115200 --imap=lfcrlf
```
There is also a [detailed tutorial on this example](https://mongoose.ws/tutorials/ti/ek-tm4c1294xl-baremetal/)
2022-12-07 04:09:15 +08:00
For more details and benchmark data on MIP, check the [F746ZG example](../../stm32/nucleo-f746zg-baremetal/)