You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
350 B
32 lines
350 B
/*
|
|
* File: mcu.h
|
|
* Author: Sparky
|
|
*
|
|
* Created on ?????, 2013, ??? 31, 0:00
|
|
*/
|
|
|
|
#ifndef MCU_H
|
|
#define MCU_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <xc.h>
|
|
|
|
#ifdef __32MX534F064H__
|
|
#include "PIC32MX534F064H.h"
|
|
#endif
|
|
|
|
#ifdef __32MX564F128H__
|
|
#include "PIC32MX534F064H.h"
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MCU_H */
|
|
|