S500 confidence swapped?

Hi everybody,
after some work in the past two years i have the impression, that the values for „smoothed_confidence“ and „this_ping_confidence“ are swapped in the „distance2“ (1223) message. I have set up the s500 for a ping rate og 10Hz (100ms).
the depth values seem to be reasonable, the smoothed depth is slowly varying, compared to the „this_ping_depth“, but the values for smoothed_confidence change more rapidly than the values for „this_ping:confidence“.
Any ideas / suggestions ?

I checked the code and it agrees with this definition in the manual:


Is this the same structure that you are referring to?
Larry

the code is ok, i checked it with code that came from the ping library. —> swapped
than i wrote my own code, that exactly uses the structure in the API definition, same effect.

Here is the structure that i am currently using:

typedef struct s500_distance2_t // structure response packet “distance2”
{
char sop0; // Start of Packet ´B´
char sop1; // Start of Packet ´R´
uint16_t payload_length; // length of payload
uint16_t packet_id; // packet id (1223)
uint8_t reserved0;
uint8_t reserved1;
uint32_t this_ping_distance; // most recent ping in mm
uint32_t averaged_distance; // average over last 20 pings in mm
uint16_t reserved;
uint8_t this_ping_confidence; // this ping confidence of distance (0 to 100)
uint8_t averaged_confidence; // confidence of averaged (last 20) distance (0 to 100)
uint32_t timestamp; // timestamp in msec from start.
uint16_t checksum;
};

and here the data from a mission in .csv format:
distance, confidence, smoothed_distance, smoothed_confidence, timestamp
2.99,100,2.84,68,977433
2.99,100,2.85,70,977633
3.12,100,2.87,72,977882
3.14,100,2.89,75,978129
3.08,100,2.91,77,978329
3.47,100,2.95,79,978578
3.44,100,2.99,81,978825
3.38,100,3.02,83,979025
3.34,100,3.05,85,979274
3.36,100,3.07,87,979521
3.02,100,3.11,77,979721
2.98,100,3.14,67,979821
3.35,100,3.17,69,980070
2.94,100,3.20,59,980317
2.98,100,3.12,85,980517
3.31,100,3.17,100,980766
3.32,100,3.18,100,981013
3.26,100,3.19,100,981113
3.28,100,3.20,100,981213
3.32,100,3.21,100,981313
3.30,100,3.22,100,981414

The same also happened in the past, when i was using the data from “profile6t” message, seems to be
the same issue. (and also for the deprecated 1303 message)

That looks like a startup issue. The signal looks good so the this_ping_confidence is high. The averaged signal has more data to work with (the last 20 pings), so until most of the past 20 pings agree with each other it reports lower confidence. The same effect might be observed in the case of a rapid change of distance. Granted, there is room for improvement in the algorithm.

I think it is not a startup issue. The data above is not the start of the Mission.
it is a cutout of the middle of the mission.
i did some other tests yeseterday and found the same behaviour. The „smoothed“ confidence did rarely reach 100% while the „this ping“ confidence was most of the time at 100%.
The bottom hardness may be an issue. in this case it was rather soft with much water plants…
But anyway, the swap also occured in the last year, when i measured „hard rock“ in the mediterranean, which was done with the „original“ code from the ping library.
i think, that the swap occurs in the firmware of the S500, because it it present in all packets i have tried so far.
i will do some further tests this afternoon in an area of the lake, where the bottom hardness is higher.
I have also found an issue concerning the ping rate
but more on this later…

update:

The issue with the „swapped“ confidence shows up only, when in shallow waters (0…5m).
I tried in depths below 20m and all worked fine. The smoothed conidence behaves as it should.
There is also another issue concerning the ping-rate. If in shallow waters and auto range mode, the ping rate varies somehow. In deeper waters, the ping rate is exactly as programmed.
I think, that this bevaiour are side-effects of auto gain and auto range modes.

You are correct, the irregular ping rate is due specifically to the auto range mode and this will be particularly noticeable in shallow water where the ping rate will normally be higher. The reason is longer pings are periodically sent to check that the algorithm has not gotten locked onto some near obstruction when the real bottom is substantially further.

Regarding the “swapped” confidence, perhaps “startup” is not the right word, but I believe it is due to the smoothing algorithm which considers a series of 20 pings and how well they agree with each other.