Firmware v2 is a C language software development environment for embedded systems. At the moment it focuses specifically on the programming of microcontrollers.
This environment is under construction!!
Always use the released versions because in these all examples are tested and the API documentation is consistent. The master branch may contain inconsistencies because this environment is currently under development.
- LPC11U68
- LPC1769
- LPC4337 (M4 and M0 cores)
- LPC54102 (M4 and M0+ cores)
- CIAA-NXP and EDU-CIAA-NXP (www.proyecto-ciaa.com.ar)
- LPCXpresso with LPC1769
- LPCXpresso with LPC54102
- LPCXpresso with LPC11U68
- gcc-arm-none-eabi
- Make sure you have an
arm-none-eabi-*
toolchain configured in yourPATH
. If you don't have it, download GCC ARM Embedded. git clone https://github.com/pridolfi/workspace.git && cd workspace
cp project.mk.template project.mk
- Define
PROJECT
,TARGET
andBOARD
(optional) variables inproject.mk
according to the project you want to compile. - Compile with
make
. - Clean with
make clean
. Clean for all targets withmake clean_all
. - Download to target via OpenOCD with
make download
.
- Workspace by Pablo Ridolfi: https://github.com/pridolfi/workspace
- sAPI by Eric pernia: https://github.com/epernia/sapi