Digital Power Starter Kit 3 Firmware
dsPIC33C Buck Converter Voltage Mode Control Example
init_timer1.h
1
/* Microchip Technology Inc. and its subsidiaries. You may use this software
2
* and any derivatives exclusively with Microchip products.
3
*
4
* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
5
* EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
6
* WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
7
* PARTICULAR PURPOSE, OR ITS INTERACTION WITH MICROCHIP PRODUCTS, COMBINATION
8
* WITH ANY OTHER PRODUCTS, OR USE IN ANY APPLICATION.
9
*
10
* IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
11
* INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
12
* WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS
13
* BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE
14
* FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS
15
* IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF
16
* ANY, THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
17
*
18
* MICROCHIP PROVIDES THIS SOFTWARE CONDITIONALLY UPON YOUR ACCEPTANCE OF THESE
19
* TERMS.
20
*/
21
22
/*
23
* File: init_timer1.h
24
* Author: M91406
25
* Comments: header file of the operating system/main task scheduler timer initialization
26
* Revision history:
27
* 1.0 initial version
28
*/
29
30
// This is a guard condition so that contents of this file are not included
31
// more than once.
32
#ifndef SYSTEM_INITIALIZE_OS_TIMER_H
33
#define SYSTEM_INITIALIZE_OS_TIMER_H
34
35
#include <xc.h>
// include processor files - each processor file is guarded.
36
#include <stdint.h>
// include standard integer types header file
37
#include <stdbool.h>
// include standard boolean types header file
38
39
extern
volatile
uint16_t
sysOsTimer_Initialize
(
void
);
40
extern
volatile
uint16_t
sysOsTimer_Enable
(
41
volatile
bool
interrupt_enable,
volatile
uint8_t interrupt_priority );
42
43
#endif
/* SYSTEM_INITIALIZE_OS_TIMER_H */
44
sysOsTimer_Enable
volatile uint16_t sysOsTimer_Enable(volatile bool interrupt_enable, volatile uint8_t interrupt_priority)
Definition:
init_timer1.c:81
sysOsTimer_Initialize
volatile uint16_t sysOsTimer_Initialize(void)
Initializes the timer used as time-base for the task scheduler.
Definition:
init_timer1.c:40
dpsk_buck_vmc.X
sources
config
init
init_timer1.h
© 2021, Microchip Technology Inc.