@@ -113,8 +113,8 @@ static void r_gpt_call_callback(gpt_instance_ctrl_t * p_ctrl, timer_event_t even
113
113
**********************************************************************************************************************/
114
114
void gpt_counter_overflow_isr (void );
115
115
void gpt_counter_underflow_isr (void );
116
- void gpt_capture_a_isr (void );
117
- void gpt_capture_b_isr (void );
116
+ void gpt_capture_compare_a_isr (void );
117
+ void gpt_capture_compare_b_isr (void );
118
118
119
119
/***********************************************************************************************************************
120
120
* Private global variables
@@ -1824,7 +1824,7 @@ void gpt_counter_underflow_isr (void)
1824
1824
*
1825
1825
* Clears interrupt, disables captures if one-shot mode, and calls callback if one was provided in the open function.
1826
1826
**********************************************************************************************************************/
1827
- void gpt_capture_a_isr (void )
1827
+ void gpt_capture_compare_a_isr (void )
1828
1828
{
1829
1829
r_gpt_capture_common_isr (GPT_PRV_CAPTURE_EVENT_A );
1830
1830
}
@@ -1834,7 +1834,7 @@ void gpt_capture_a_isr (void)
1834
1834
*
1835
1835
* Clears interrupt, disables captures if one-shot mode, and calls callback if one was provided in the open function.
1836
1836
**********************************************************************************************************************/
1837
- void gpt_capture_b_isr (void )
1837
+ void gpt_capture_compare_b_isr (void )
1838
1838
{
1839
1839
r_gpt_capture_common_isr (GPT_PRV_CAPTURE_EVENT_B );
1840
1840
}
0 commit comments