mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Expand Uemis Zurich download support
With this commit we not only use the getDivelogs command but also the getDive command for each of the dives that was downloaded. Oddly, that makes quite a bit of redundant (and at times slightly contradictory) data available, but also many new things. We now get weight, suit and notes that were stored with a dive in the logbook on the divecomputer. There are a ton more data available that we don't use, yet. For example information about altitude, a decoindex, dive type and dive activity, other equipment information, etc. I still need to decide how much of this I want to make available in Subsurface (and how I want to present this - after all most of this is not available from other dive computers). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d5ac38d9ed
commit
b8a4730661
3 changed files with 272 additions and 29 deletions
2
uemis.c
2
uemis.c
|
@ -43,7 +43,7 @@ static void decodeblock( unsigned char in[4], unsigned char out[3] ) {
|
|||
/*
|
||||
* decode a base64 encoded stream discarding padding, line breaks and noise
|
||||
*/
|
||||
static void decode( uint8_t *inbuf, uint8_t *outbuf, int inbuf_len ) {
|
||||
void decode( uint8_t *inbuf, uint8_t *outbuf, int inbuf_len ) {
|
||||
uint8_t in[4], out[3], v;
|
||||
int i,len,indx_in=0,indx_out=0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue