Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonlamb-gh/stm32f429-smoltcp-mqtt-rtic
Example MQTT client, smoltcp IP stack, running on RTIC
https://github.com/jonlamb-gh/stm32f429-smoltcp-mqtt-rtic
mqtt no-std rtic rust
Last synced: about 1 month ago
JSON representation
Example MQTT client, smoltcp IP stack, running on RTIC
- Host: GitHub
- URL: https://github.com/jonlamb-gh/stm32f429-smoltcp-mqtt-rtic
- Owner: jonlamb-gh
- Created: 2022-04-06T11:10:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-06T11:11:08.000Z (almost 3 years ago)
- Last Synced: 2024-11-07T05:32:37.663Z (3 months ago)
- Topics: mqtt, no-std, rtic, rust
- Language: Rust
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stm32f429-smoltcp-mqtt-rtic
Example MQTT client, smoltcp IP stack, running on RTIC.
```
export MAC_ADDRESS="02:00:00:03:02:00"
export IP_ADDRESS="a.b.c.d"
export BROKER_IP_ADDRESS="a.b.c.e"cargo run --release
(HOST) INFO flashing program (184.70 KiB)
(HOST) INFO success!
────────────────────────────────────────────────────────────────────────────────
INFO - mqtt-rtic version 0.1.0
INFO - MAC address: 02-03-04-05-06-07
INFO - IP address: a.b.c.d
INFO - Broker IP address: a.b.c.d
INFO - --- Starting hardware setup
INFO - Setup GPIO
INFO - Setup Ethernet
INFO - Setup phy
INFO - Waiting for link
INFO - Setup TCP/IP
INFO - Setup SysTick
INFO - Setup network
INFO - --- Hardware setup done
INFO - MQTT connected, subscribing to settings
INFO - Settings update: `led`
────────────────────────────────────────────────────────────────────────────────
```