Kevin Townsend
Kevin Townsend
Add the ability to optionally include optimised architecture-specific versions of functions as inline assembly (or other inline codes). For initial releases, plumbing for ARM Thumb and ARM Thumb2 should be...
Adds Aarch32 release notes for Zephyr 3.2. Signed-off-by: Kevin Townsend
Adds release notes for Zephyr 3.2 related to TF-M. Signed-off-by: Kevin Townsend
Address some small logical and code problems identified in the issues below: Fixes #46 Fixes #47 Fixes #48
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,...
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);...
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...