Merge pull request #994 from RobMeades/patch-1

Vector table must be 256 aligned
pull/1002/merge
Bogdan Marinescu 2015-03-31 13:37:53 +03:00
commit 68fab559fa
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ DigitalOut out(PIN_OUT);
DigitalOut myled(LED1);
volatile int checks = 0;
uint32_t int_table[NUM_VECTORS];
uint32_t int_table[NUM_VECTORS] __attribute__ ((aligned(256)));
#define FALLING_EDGE_COUNT 5