-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuser.c
25 lines (19 loc) · 1.06 KB
/
user.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/******************************************************************************/
/* Files to Include */
/******************************************************************************/
#ifdef __XC32
#include <xc.h> /* Defines special funciton registers, CP0 regs */
#endif
#include <plib.h> /* Include to use PIC32 peripheral libraries */
#include <stdint.h> /* For uint32_t definition */
#include <stdbool.h> /* For true/false definition */
#include "user.h" /* variables/params used by user.c */
/******************************************************************************/
/* User Functions */
/******************************************************************************/
/* TODO Initialize User Ports/Peripherals/Project here */
void InitApp(void)
{
/* Setup analog functionality and port direction */
/* Initialize peripherals */
}