GPS: add GPS_UBLOX_passthrough sketch

This sketch allows the user to configure the Ublox GPS using U-Center
without the need for an FTDI cable.
This commit is contained in:
Randy Mackay 2013-11-24 14:53:08 +09:00
parent 2d202df98a
commit bd6511dd0a
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
* GPS UBlox passthrough sketch
* Code by DIYDrones.com
*
* Works with APM2.x
*/
#include <stdlib.h>
#include <AP_Common.h>
#include <AP_Progmem.h>
#include <AP_Param.h>
#include <AP_HAL.h>
#include <AP_HAL_AVR.h>
#include <AP_HAL_Empty.h>
#include <AP_HAL_PX4.h>
#include <AP_GPS.h>
#include <AP_Math.h>
#include <AP_Notify.h>
const AP_HAL::HAL& hal = AP_HAL_BOARD_DRIVER;
void setup()
{
// initialise console uart to 38400 baud
hal.console->begin(38400);
// initialise gps uart to 38400 baud
hal.uartB->begin(38400);
}
void loop()
{
// send characters received from the console to the GPS
while (hal.console->available()) {
hal.uartB->write(hal.console->read());
}
// send GPS characters to the console
while (hal.uartB->available()) {
hal.console->write(hal.uartB->read());
}
}
AP_HAL_MAIN();

View File

@ -0,0 +1,2 @@
BOARD = mega
include ../../../../mk/apm.mk