CLEON  Version 1
Cloud-Offloaded GPS Receiver
sys_power.h
Go to the documentation of this file.
1 
7 #ifndef __SYS_POWER_H__
8 #define __SYS_POWER_H__
9 
10 #define BOOST_SHDN_N_HIGH() BOOST_SHDN_N_PORT(OUT) |= BV(BOOST_SHDN_N_PIN);
11 #define BOOST_SHDN_N_LOW() BOOST_SHDN_N_PORT(OUT) &= ~BV(BOOST_SHDN_N_PIN);
12 
13 #define GPS_PWR_SHDN_N_HIGH() GPS_PWR_SHDN_N_PORT(OUT) |= BV(GPS_PWR_SHDN_N_PIN);
14 #define GPS_PWR_SHDN_N_LOW() GPS_PWR_SHDN_N_PORT(OUT) &= ~BV(GPS_PWR_SHDN_N_PIN);
15 
16 void SYS_PWR_Init(void);
17 
18 #endif