@@ -73,6 +73,32 @@ void ntripServerStop(bool clientAllocated) {online.ntripServer = false;}
7373void ntripServerUpdate () {}
7474void ntripServerValidateTables () {}
7575
76+ // ----------------------------------------
77+ // OTA client
78+ // ----------------------------------------
79+
80+ void otaVerifyTables () {}
81+
82+ // ----------------------------------------
83+ // PVT client
84+ // ----------------------------------------
85+
86+ int32_t pvtClientSendData (uint16_t dataHead) {return 0 ;}
87+ void pvtClientUpdate () {}
88+ void pvtClientValidateTables () {}
89+ void pvtClientZeroTail () {}
90+ void discardPvtClientBytes (RING_BUFFER_OFFSET previousTail, RING_BUFFER_OFFSET newTail) {}
91+
92+ // ----------------------------------------
93+ // PVT UDP server
94+ // ----------------------------------------
95+
96+ int32_t pvtUdpServerSendData (uint16_t dataHead) {return 0 ;}
97+ void pvtUdpServerStop () {}
98+ void pvtUdpServerUpdate () {}
99+ void pvtUdpServerZeroTail () {}
100+ void discardPvtUdpServerBytes (RING_BUFFER_OFFSET previousTail, RING_BUFFER_OFFSET newTail) {}
101+
76102#endif // COMPILE_NETWORK
77103
78104// ----------------------------------------
@@ -92,35 +118,16 @@ bool parseIncomingSettings() {return false;}
92118#endif // COMPILE_AP
93119#ifndef COMPILE_WIFI
94120
95- // ----------------------------------------
96- // PVT client
97- // ----------------------------------------
98-
99- uint16_t pvtClientSendData (uint16_t dataHead) {return 0 ;};
100- void pvtClientUpdate () {}
101- void pvtClientValidateTables () {}
102- void pvtClientZeroTail () {}
103- void discardPvtClientBytes (RING_BUFFER_OFFSET previousTail, RING_BUFFER_OFFSET newTail) {}
104-
105-
106121// ----------------------------------------
107122// PVT server
108123// ----------------------------------------
109124
110- int pvtServerSendData (uint16_t dataHead) {return 0 ;}
125+ int32_t pvtServerSendData (uint16_t dataHead) {return 0 ;}
126+ void pvtServerStop () {}
111127void pvtServerUpdate () {}
112128void pvtServerZeroTail () {}
113129void pvtServerValidateTables () {}
114130void discardPvtServerBytes (RING_BUFFER_OFFSET previousTail, RING_BUFFER_OFFSET newTail) {}
115- void discardPvtUdpServerBytes (RING_BUFFER_OFFSET previousTail, RING_BUFFER_OFFSET newTail) {}
116-
117- // ----------------------------------------
118- // PVT UDP server
119- // ----------------------------------------
120-
121- int pvtUdpServerSendData (uint16_t dataHead) {return 0 ;}
122- void pvtUdpServerUpdate () {}
123- void pvtUdpServerZeroTail () {}
124131
125132// ----------------------------------------
126133// WiFi
0 commit comments