Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srsly4/js-embedded-platform
Managed Javascript interpreter for embedded platforms
https://github.com/srsly4/js-embedded-platform
Last synced: 2 months ago
JSON representation
Managed Javascript interpreter for embedded platforms
- Host: GitHub
- URL: https://github.com/srsly4/js-embedded-platform
- Owner: srsly4
- License: mit
- Created: 2018-05-12T13:11:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-08T00:06:51.000Z (almost 5 years ago)
- Last Synced: 2024-08-03T18:16:45.911Z (6 months ago)
- Language: C
- Size: 116 MB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - js-embedded-platform
README
# js-embedded-platform
Managed Javascript interpreter for embedded platforms## Compiling
To compile platform for designed platform, configure CMake project with (in project's root directory):
```
cmake -DPLATFORM==
```And compile with:
```
make
```Programmable binaries can be uploaded onto the board with:
```
make UPLOAD
```## Supported platforms
Currently there are two supported platforms:
* STM32F429ZI Nucleo-144 - with GPIO support (platform key is `nucleo-f429zi`). `arm-none-eabi-gcc` toolchain is required along with `openocd`
* Linux - currently only for testing purposes (platform key is `unix`)