-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathublox.h
27 lines (23 loc) · 789 Bytes
/
ublox.h
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
26
27
/**
* @file ublox.h
*
* @brief Ansteuerung für das u-blox NEO-7M GPS-Modul
*
* Diese Datei enthält alle Definitionen für ublox.c und wird
* zur Ansteuerung des u-blox NEO-7M GPS-Moduls inkludiert.
* Außerdem wird die I2C-Adresse des Moduls hier festgelegt.
*
*
* @authors Christopher Büchse und Jan Burmeister
* @date Sommersemester 2017
*
* @see https://www.u-blox.com/sites/default/files/products/documents/u-blox7-V14_ReceiverDescrProtSpec_%28GPS.G7-SW-12001%29_Public.pdf
*/
#ifndef UBLOX_H_
#define UBLOX_H_
//! Die Adresse des u-blox NEO-7M Moduls beträgt normalerweise 0x42 (66).
#define UBLOX_ADR 66 // 0x42
// Funktionsprototypen
extern int randomReadUblox(char adr, char* b, unsigned int length);
extern int writeUblox(char* b, int length);
#endif // UBLOX_H_