Cross MCU firmware framework written by students, alumni, and faculty of San Jose State University. Designed for the original purpose of helping students develop firmware for the SJTwo board.
- Linux (Intel & ARM)
- Mac OSX
- Windows
To download and setup the environment, simply copy and paste this into a terminal:
python3 -m pip install sammy-sjsu-dev2 nxpprog pyocdIf you find that git is not installed on your machine follow these steps to install GIT.
If python π isn't installed you can find the installer here: install Python.
To create an SJSU-Dev2v3 project simply run the following command:
python3 -m sammy start new_project
cd new_projectHere you should find the following directories:
packages: contains library and toolslibrary: symlinks to all of the library source.sj2hidden project directory
To build a project simply use the sammy build command which will build a
main.cpp file if it exists in the directory.
python3 -m sammy buildYou can also specify a path to a specific source file you want to build.
python3 -m sammy build main.cpp
python3 -m sammy build blinker.cpp
python3 -m sammy build demos/i2c_scan.cppFrom within a project, run:
[update this later!]
# Linux
python3 -m nxpprog --device /dev/ttyUSB0 build/lpc40xx/lpc40xx.main.cpp.bin
# OSX
python3 -m nxpprog --device /dev/tty.SLABtoSerial build/lpc40xx/lpc40xx.main.cpp.bin
# Windows
python3 -m nxpprog --device COM3If you are using a JTAG or SWD device with your MCU, you can debug the device with a similiar command to programming:
python3 -m pyocd gdbserver --target lpc4088
# On a new terminal window
python3 -m sammy gdb --platform lcp40xx main.cpp