gnss.h
21 lines
| 341 B
| text/x-c
|
CLexer
|
r132 | /* | ||
* gnss.h | ||||
* | ||||
* Created on: Nov 4, 2014 | ||||
* Author: Alan Aguilar Sologuren | ||||
*/ | ||||
#ifndef GNSS_H_ | ||||
#define GNSS_H_ | ||||
namespace te_gnss { | ||||
//pin ports to GNSS | ||||
#define PPS 2 /*!< PE4 AVR <> 2 Arduino */ | ||||
#define ENB 5 /*!< PE3 AVR <> 5 Arduino */ | ||||
#define RX0_GNSS RX0 | ||||
#define TX0_GNSS TX0 PE1 | ||||
} | ||||
#endif /* GNSS_H_ */ | ||||