From 0a4508c994b3b8094189478f3a8f30de7d0034cc Mon Sep 17 00:00:00 2001 From: masierra Date: Thu, 4 Feb 2016 11:02:50 -0800 Subject: [PATCH] [udp] gps init fix --- sw/airborne/subsystems/gps/gps_udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/airborne/subsystems/gps/gps_udp.c b/sw/airborne/subsystems/gps/gps_udp.c index 3742c53f96..81189f8c88 100644 --- a/sw/airborne/subsystems/gps/gps_udp.c +++ b/sw/airborne/subsystems/gps/gps_udp.c @@ -37,7 +37,7 @@ unsigned char gps_udp_read_buffer[256]; struct FmsNetwork *gps_network = NULL; -void gps_impl_init(void) +void udp_gps_impl_init(void) { gps.fix = GPS_FIX_NONE; gps_network = network_new(STRINGIFY(GPS_UDP_HOST), 6000 /*out*/, 7000 /*in*/, TRUE);