forked from paparazzi/pprzlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpprzlog_transport.c
125 lines (111 loc) · 4.2 KB
/
pprzlog_transport.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Copyright (C) 2014-2015 Gautier Hattenberger <[email protected]>
*
* This file is part of paparazzi.
*
* paparazzi is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* paparazzi is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with paparazzi; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
/**
* @file pprzlink/pprzlog_transport.c
*
* Building and Paparazzi frames with timestamp for data logger.
*
* LOG-message: ABCDEFGHxxxxxxxI
* A PPRZ_STX (0x99)
* B LENGTH (H->H)
* C SOURCE (0=uart0, 1=uart1, 2=i2c0, ...)
* D TIMESTAMP_LSB (100 microsec raster)
* E TIMESTAMP
* F TIMESTAMP
* G TIMESTAMP_MSB
* H PPRZ_DATA
* 0 SENDER_ID
* 1 MSG_ID
* 2 MSG_PAYLOAD
* . DATA (messages.xml)
* I CHECKSUM (sum[B->H])
*
*/
#include <inttypes.h>
#include "pprzlink/pprzlog_transport.h"
#define STX_LOG 0x99
static void accumulate_checksum(struct pprzlog_transport *trans, const uint8_t byte)
{
trans->ck += byte;
}
static void put_bytes(struct pprzlog_transport *trans, struct link_device *dev, long fd,
enum TransportDataType type __attribute__((unused)), enum TransportDataFormat format __attribute__((unused)),
const void *bytes, uint16_t len)
{
const uint8_t *b = (const uint8_t *) bytes;
int i;
for (i = 0; i < len; i++) {
accumulate_checksum(trans, b[i]);
}
dev->put_buffer(dev->periph, fd, b, len);
}
static void put_named_byte(struct pprzlog_transport *trans, struct link_device *dev, long fd,
enum TransportDataType type __attribute__((unused)), enum TransportDataFormat format __attribute__((unused)),
uint8_t byte, const char *name __attribute__((unused)))
{
accumulate_checksum(trans, byte);
dev->put_byte(dev->periph, fd, byte);
}
static uint8_t size_of(struct pprzlog_transport *trans __attribute__((unused)), uint8_t len)
{
return len;
}
static void start_message(struct pprzlog_transport *trans, struct link_device *dev, long fd, uint8_t payload_len)
{
dev->put_byte(dev->periph, fd, STX_LOG);
const uint8_t msg_len = size_of(trans, payload_len);
trans->ck = 0;
uint8_t buf[] = { msg_len, 0 }; // TODO use correct source ID
put_bytes(trans, dev, fd, DL_TYPE_UINT8, DL_FORMAT_SCALAR, buf, 2);
uint32_t ts = trans->get_time_usec() / 100;
put_bytes(trans, dev, fd, DL_TYPE_TIMESTAMP, DL_FORMAT_SCALAR, (uint8_t *)(&ts), 4);
}
static void end_message(struct pprzlog_transport *trans, struct link_device *dev, long fd)
{
dev->put_byte(dev->periph, fd, trans->ck);
dev->send_message(dev->periph, fd);
}
static void overrun(struct pprzlog_transport *trans __attribute__((unused)),
struct link_device *dev __attribute__((unused)))
{
}
static void count_bytes(struct pprzlog_transport *trans __attribute__((unused)),
struct link_device *dev __attribute__((unused)), uint8_t bytes __attribute__((unused)))
{
}
static int check_available_space(struct pprzlog_transport *trans __attribute__((unused)), struct link_device *dev, long *fd,
uint16_t bytes)
{
return dev->check_free_space(dev->periph, fd, bytes);
}
void pprzlog_transport_init(struct pprzlog_transport *t, get_time_usec_t get_time_usec)
{
t->trans_tx.size_of = (size_of_t) size_of;
t->trans_tx.check_available_space = (check_available_space_t) check_available_space;
t->trans_tx.put_bytes = (put_bytes_t) put_bytes;
t->trans_tx.put_named_byte = (put_named_byte_t) put_named_byte;
t->trans_tx.start_message = (start_message_t) start_message;
t->trans_tx.end_message = (end_message_t) end_message;
t->trans_tx.overrun = (overrun_t) overrun;
t->trans_tx.count_bytes = (count_bytes_t) count_bytes;
t->trans_tx.impl = (void *)(t);
t->get_time_usec = get_time_usec;
}