
1. InitCode for modules generated to different files 2. Added correct interrupt stucture PWM-ADC-MainCode 3. PWM freq and BaseTime freq defined using DEFINES in main.c
16 lines
260 B
C
16 lines
260 B
C
/*
|
||
* appIsrCallBacks.h
|
||
*
|
||
* Created on: 18 авг. 2023 г.
|
||
* Author: on4ip
|
||
*/
|
||
|
||
#ifndef APPISRCALLBACKS_H_
|
||
#define APPISRCALLBACKS_H_
|
||
|
||
void adcIsrCallBack(void);
|
||
void tim1msCallBack(void);
|
||
void timPwmCallBack(void);
|
||
|
||
|
||
#endif /* APPISRCALLBACKS_H_ */
|