-
Hi SevenWatt,
sorry to bother you, but can any of these be used with a Jeelink v3c (RFM69) to receive EC3K data ?
Thanks in advance!
olluz updated
8 years ago
-
When LPC devices are programmed to remap the reset pin it is required to apply power and set DTR/RTS in a specific manner to get access to the bootloader in order to program. Provide hardware and soft…
-
The blog states that the mbed SDK is Apache licensed and the CMSIS components are BSD licensed (https://mbed.org/blog/entry/mbed-SDK-is-now-Open-Source/ , https://mbed.org/blog/entry/CMSIS-Components-…
-
Compiling 'RGBCalibrate' for 'ATtiny45 @ 8 MHz'
RGBCalibrate.cpp.o:In function `CLEDController* CFastLED::addLeds(CRGB const*, int, int)'
FastLED.h:undefined reference to`__cxa_guard_acquire'
FastLED.…
-
NCP/ARM Cortex-M0+ MCU. http://www.nxp.com/products/microcontrollers/product_series/lpc800/#overview
Possible starting ground for adding support for ARM.
-
-
LPC810 is a Cortex-M0+ microcontroller in DIP-8 package from NXP. NXP provides some code in this package: http://www.lpcware.com/system/files/lpcopen_2_15_lpcxpresso_nxp_lpcxpresso_812.zip and there i…
-
```
__attribute__ ((section(".after_vectors")))
void SVCall_Handler(void)
{
```
should be
```
__attribute__ ((section(".after_vectors")))
void SVC_Handler(void)
{
```
since the isr vector table ref…
-
I tried to find out why the codebase is still rather large, given its limited functionality. One of the apparent space-wasters I came across is the handling of the system clock rate. Since it is store…