-
Notifications
You must be signed in to change notification settings - Fork 0
Ext Int Functions
This page outlines the functions provided in the external interrupt peripheral library in SUBLIBinal. Please select the relevant function from the list below to be redirected to documentation.
Definition
void initialize_Interrupt(Interrupt_Config config);
Description:
This function initializes an interrupt with the supplied configuration. Resistor configuration and tristate variables are contained within this function and do not need to be implemented externally.
Parameters:
-
config: this parameter is a completely filled out
Interrupt_Config
structure. All parameters should be initialized to some known value to ensure desired interrupt functionality is achieved.
Definition
void disable_Interrupt(Interrupt extInt);
Description:
This function simply disables the interrupt specified in the interrupt parameter.
Parameters:
- extInt: this parameter specifies which interrupt should be disabled.
Definition
void enable_Interrupt(Interrupt extInt);
Description: This function simply enables the interrupt specified in the interrupt parameter.
Parameters:
- extInt: this parameter specifies which interrupt should be enabled.
SUBLIBinal was created by the Palouse Robosub Club.