A starter kit for the Texas Instruments Tiva C Series TM4C123GXL LaunchPad, containing only software with BSD-compatible licenses and no "TI Commercial" code. Tested on macOS 10.14.3 with Homebrew, but should work on any other Unix that supports Linuxbrew.
- Install Homebrew from https://brew.sh if you haven't already.
- Clone this repository with
git clone [email protected]:kk4ead/claros
. - Download and install all dependencies with
cd claros && make deps
. - Build the demo project with
make
. - Connect a LaunchPad and run
make flash
. You should see the LED on the board start cycling through colors. - Run
screen /dev/cu.usbmodem* 115200
to connect to UART0. You should see "red", "green", "red", "blue", print to the console each time the corresponding color is toggled.
Thanks to Josh Minor and Sean Kirmani for their ee445l-linux tools, and to Zee Lv for his zEEware tools.