@meri-imperiumi/signalk-aprs 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -26,11 +26,12 @@ Very early stages, being tested with the [LoRa APRS iGate](https://github.com/ri
26
26
  * Send telemetry (battery status, water depth, anchor distance) over APRS
27
27
  * Show other APRS beacons as vessels in Freeboard etc
28
28
  * Send alerts to crew over APRS
29
- * Get a [dedicated TOCALL for this plugin](https://github.com/aprsorg/aprs-deviceid/issues/244)
30
29
  * Figure out how to handle APRS messaging from/to boat
31
30
 
32
31
  ## Changes
33
32
 
33
+ * 0.2.0 (2025-11-15)
34
+ - Using the new [dedicated APSIGK tocall](https://github.com/aprsorg/aprs-deviceid/issues/244)
34
35
  * 0.1.1 (2025-10-29)
35
36
  - Fix position precision
36
37
  * 0.1.0 (2025-10-29)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meri-imperiumi/signalk-aprs",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Signal K plugin for interacting with the Automatic Packet Reporting System for radio amateurs",
5
5
  "main": "plugin/index.js",
6
6
  "scripts": {
package/plugin/index.js CHANGED
@@ -181,6 +181,7 @@ module.exports = (app) => {
181
181
  socket.setTimeout(10000);
182
182
  socket.once('error', onConnectionError);
183
183
  socket.on('ready', () => {
184
+ attempt = 0;
184
185
  app.debug(`${connectionStr} connected`);
185
186
  const mySendStream = new KISSSender();
186
187
  mySendStream.pipe(socket);
@@ -260,7 +261,7 @@ module.exports = (app) => {
260
261
  const payload = `=${formatLatitude(v.value.latitude)}${settings.beacon.symbol[0]}${formatLongitude(v.value.longitude)}${settings.beacon.symbol[1]} ${app.getSelfPath('name')} ${state} ${settings.beacon.note}`;
261
262
  const frame = newKISSFrame().fromFrame({
262
263
  destination: {
263
- callsign: 'APZ42', // FIXME: https://github.com/aprsorg/aprs-deviceid/issues/244
264
+ callsign: 'APSIGK',
264
265
  },
265
266
  source: {
266
267
  callsign: settings.beacon.callsign,