Skip to content

Commit

Permalink
Merge changes with EXT driver (#25)
Browse files Browse the repository at this point in the history
#ALL#
  • Loading branch information
josesimoes authored Feb 9, 2018
1 parent e409d8f commit 3acefaf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 20 deletions.
6 changes: 1 addition & 5 deletions CMSIS-OS/ChibiOS/GHI_FEZ_CERB40_NF/nanoCLR/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@
#include <WireProtocol_ReceiverThread.h>
#include <nanoCLR_Application.h>
#include <nanoPAL_BlockStorage.h>

// need this definition here because it depends on the specifics of the target (how many INT lines exist on that series/device)
#if (HAL_USE_EXT == TRUE)
EXTConfig extInterruptsConfiguration = { .channels = { {EXT_CH_MODE_DISABLED, NULL} }};
#endif
#include <targetPAL.h>

// need to declare the Receiver thread here
osThreadDef(ReceiverThread, osPriorityNormal, 2048, "ReceiverThread");
Expand Down
6 changes: 1 addition & 5 deletions CMSIS-OS/ChibiOS/I2M_ELECTRON_NF/nanoCLR/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@
#include <WireProtocol_ReceiverThread.h>
#include <nanoCLR_Application.h>
#include <nanoPAL_BlockStorage.h>

// need this definition here because it depends on the specifics of the target (how many INT lines exist on that series/device)
#if (HAL_USE_EXT == TRUE)
EXTConfig extInterruptsConfiguration = { .channels = { {EXT_CH_MODE_DISABLED, NULL} }};
#endif
#include <targetPAL.h>

// need to declare the Receiver thread here
osThreadDef(ReceiverThread, osPriorityNormal, 2048, "ReceiverThread");
Expand Down
6 changes: 1 addition & 5 deletions CMSIS-OS/ChibiOS/I2M_OXYGEN_NF/nanoCLR/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@
#include <WireProtocol_ReceiverThread.h>
#include <nanoCLR_Application.h>
#include <nanoPAL_BlockStorage.h>

// need this definition here because it depends on the specifics of the target (how many INT lines exist on that series/device)
#if (HAL_USE_EXT == TRUE)
EXTConfig extInterruptsConfiguration = { .channels = { {EXT_CH_MODE_DISABLED, NULL} }};
#endif
#include <targetPAL.h>

// need to declare the Receiver thread here
osThreadDef(ReceiverThread, osPriorityNormal, 2048, "ReceiverThread");
Expand Down
6 changes: 1 addition & 5 deletions CMSIS-OS/ChibiOS/ST_NUCLEO64_F411RE_NF/nanoCLR/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@
#include <WireProtocol_ReceiverThread.h>
#include <nanoCLR_Application.h>
#include <nanoPAL_BlockStorage.h>

// need this definition here because it depends on the specifics of the target (how many INT lines exist on that series/device)
#if (HAL_USE_EXT == TRUE)
EXTConfig extInterruptsConfiguration = { .channels = { {EXT_CH_MODE_DISABLED, NULL} }};
#endif
#include <targetPAL.h>

// need to declare the Receiver thread here
osThreadDef(ReceiverThread, osPriorityNormal, 2048, "ReceiverThread");
Expand Down

0 comments on commit 3acefaf

Please sign in to comment.