Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacobdam/lk-iot-apps
Experiment IoT apps with Little Kernel + STM32 boards
https://github.com/jacobdam/lk-iot-apps
blink iot little-kernel stm32f103x
Last synced: 3 minutes ago
JSON representation
Experiment IoT apps with Little Kernel + STM32 boards
- Host: GitHub
- URL: https://github.com/jacobdam/lk-iot-apps
- Owner: jacobdam
- License: mit
- Created: 2019-07-05T15:46:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-05T16:57:16.000Z (over 5 years ago)
- Last Synced: 2024-08-02T20:45:40.802Z (3 months ago)
- Topics: blink, iot, little-kernel, stm32f103x
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LK IoT
This is a personal experiment using [Little Kernel](https://github.com/littlekernel/lk) building IoT apps with STM32 boards.
## Prerequisite
Depends on what the project you build. The default project (blink) requires this minimum software and hardware.
**Hardware**
- Development board: SMT32F103C8T6 Cortex M3 Blue Pill board
- Programmer: ST-Link V2**Software**
- The ARM toolchain
- STMicroelectronics Stlink ToolsIf you are Mac user and terminal is your style:
```bash
brew tap osx-cross/arm
brew install arm-gcc-bin
brew install stlink
```## Setup and build
```
mkdir lk_root
cd lk_root
git clone https://github.com/littlekernel/lk.git
git clone https://github.com/jacobdam/lk-iot-apps.git
cd lk-iot-apps
cp lk_inc.mk.example lk_inc.mk
make blink-led
```Read [LK wiki](https://github.com/littlekernel/lk/wiki) for more information.
## License
MIT