Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase priority of syslink flow control interrupt #1103

Merged
merged 1 commit into from
Aug 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/config/nvicconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
#define NVIC_RADIO_PRI 11
#define NVIC_ADC_PRI 12
#define NVIC_CPPM_PRI 14
#define NVIC_SYSLINK_FLOW_PRI 4
#define NVIC_SYSLINK_UART_PRI 5
#define NVIC_SYSLINK_DMA_PRI 7
#define NVIC_SPI_PRI 7
Expand All @@ -100,7 +101,7 @@
#define EXTI1_PRI NVIC_LOW_PRI
#define EXTI2_PRI NVIC_LOW_PRI
#define EXTI3_PRI NVIC_LOW_PRI
#define EXTI4_PRI NVIC_SYSLINK_UART_PRI // this serves the syslink UART
#define EXTI4_PRI NVIC_SYSLINK_FLOW_PRI // this is used for flow control when STM sends data to the NRF on the syslink UART
#define EXTI9_5_PRI NVIC_LOW_PRI
#define EXTI15_10_PRI NVIC_MID_PRI // this serves the decks and sensors

Expand Down