1,5 → 1,12 |
// PIC32MX795F512L |
|
#ifndef DEFINES_H |
#define DEFINES_H |
|
#include <xc.h> |
#include <plib.h> |
#include <stdint.h> |
|
// Uncomment ONE of the following: |
//#define CEREBOT_32MX7 |
#define CEREBOT_MX7CK |
24,8 → 31,8 |
#define LED4_TRIS TRISGbits.TRISG15 |
#define LED4_PORT PORTGbits.RG15 |
|
void Delay_MS(unsigned int delay_ms); |
void Delay_US(unsigned int delay_us); |
void Delay_MS(uint32_t delay_ms); |
void Delay_US(uint32_t delay_us); |
|
// <editor-fold desc="PMOD to MCU Pinouts"> |
/* |
209,3 → 216,5 |
JP17 - Do Not Use |
*/ |
// </editor-fold> |
|
#endif /* DEFINES_H */ |