Subversion Repositories NaviCtrl

Compare Revisions

Ignore whitespace Rev 174 → Rev 175

/trunk/main.c
233,8 → 233,6
// initialize i2c bus to MK3MAG (needs Timer 1)
I2C1_Init();
// initialize the gps position controller (needs Timer 1)
GPS_Init();
// initialize fat16 partition on sd card (needs Timer 1)
Fat16_Init();
// initialize NC params
NCParams_Init();
244,7 → 242,7
Logging_Init();
 
TimerCheckError = SetDelay(3000);
UART1_PutString("\r\n---------------------------------------------");
UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++");
UART1_PutString("\n\r Version information:");
 
GetNaviCtrlVersion();
265,7 → 263,8
 
UART0_GetMKOSDVersion();
 
UART1_PutString("\r\n---------------------------------------------\r\n\r\n");
GPS_Init();
// initialize fat16 partition on sd card (needs Timer 1)
// ---------- Prepare the isr driven
// set to absolute lowest priority
/trunk/main.h
4,7 → 4,7
 
#define VERSION_MAJOR 0
#define VERSION_MINOR 16
#define VERSION_PATCH 11
#define VERSION_PATCH 14
 
#define VERSION_SERIAL_MAJOR 10
#define VERSION_SERIAL_MINOR 1
/trunk/ubx.c
196,7 → 196,6
u8 i;
 
 
 
// if GPS data show valid time data
if((UbxSol.Status != INVALID) && (UbxSol.Flags & FLAG_WKNSET) && (UbxSol.Flags & FLAG_TOWSET) )
{