Changes to support running on smaller memory LPC device LPC1764
Fork of mbed-dev by
Revision 30:748c8b6e75b1, committed 2015-11-26
- Comitter:
- mbed_official
- Date:
- Thu Nov 26 13:30:11 2015 +0000
- Parent:
- 29:d3245924094c
- Child:
- 31:1720eef440d8
- Commit message:
- Synchronized with git revision 7fcda4012c43cb7904b7250986e326d5c007a32a
Full URL: https://github.com/mbedmicro/mbed/commit/7fcda4012c43cb7904b7250986e326d5c007a32a/
[FATFileSystem] Updated FatFs to R0.11a & fixed sync bug
Changed in this revision
--- a/common/InterruptIn.cpp Thu Nov 26 13:15:10 2015 +0000 +++ b/common/InterruptIn.cpp Thu Nov 26 13:30:11 2015 +0000 @@ -44,6 +44,7 @@ _rise.attach(fptr); gpio_irq_set(&gpio_irq, IRQ_RISE, 1); } else { + _rise.attach(NULL); gpio_irq_set(&gpio_irq, IRQ_RISE, 0); } } @@ -53,6 +54,7 @@ _fall.attach(fptr); gpio_irq_set(&gpio_irq, IRQ_FALL, 1); } else { + _fall.attach(NULL); gpio_irq_set(&gpio_irq, IRQ_FALL, 0); } }
--- a/targets/hal/TARGET_STM/TARGET_STM32F3/TARGET_NUCLEO_F303K8/PinNames.h Thu Nov 26 13:15:10 2015 +0000 +++ b/targets/hal/TARGET_STM/TARGET_STM32F3/TARGET_NUCLEO_F303K8/PinNames.h Thu Nov 26 13:30:11 2015 +0000 @@ -112,6 +112,8 @@ A3 = PA_4, A4 = PA_5, A5 = PA_6, + A6 = PA_7, + A7 = PA_2, D0 = PA_10, D1 = PA_9, D2 = PA_12,