LPC11U_LPC13U_CodeBase
LPC11U_LPC13U_CodeBase copied to clipboard
Open source code base for ARM Cortex M3 LPC1347 or Cortex M0 LPC11U37/LPC11U24 MCUs
CFG_INTERFACE and CFG_CC3000 seem to have a config conflict and can't be enabled at the same time. This should be resolved so they can be used together. See: http://www.microbuilder.eu/Forums/Thread/fe6bbd04-2132-496d-8cd4-e301456b1ecf.aspx
Add FILE redirections for Make, Crossworks and LPCXpresso based on nRF51 code (STD\* is fine for targets for now, with the output based on CFG_PRINTF*, which is how the current...
`make flash` support should be added using lpc2isp in the `/tools` folder, assuming a standard FTDI cable or inexpensive USB to UART TTL cable as a transport mechanism. This should...
Get CFG_SDCARD support working on the LPC11U37H LPCXpresso v2 board. The schematic for the board is here: http://www.embeddedartists.com/sites/default/files/docs/schematics/LPCXpressoLPC11U37EHrevA.pdf To test SD functionality, use the CLI and enter the 'd' command,...
I think open source is the way to go in embedded programming. I like your project. Awesome work! I came across your project when I was looking for sprintf with...
Precision values with a decimal point are not properly handled in stdio.c for %f, so the following will fail: ``` sprintf(sbuff,"%5.1f", x); ``` However, this will work: ``` sprintf(sbuff,"%4f", x);...
Would it be better to abstract away access to `I2CWriteLength, I2CReadLength, I2CMasterBuffer, I2CSlaveBuffer`? It seems like manipulation of these global variables creates a lot of coupling in between the I2C...
Bulk and HID can't be used at the same time with the ROM drivers, seems to be buffer related. Need to explore, but for now don't use these two classes...