Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Loading...
Searching...
No Matches
uavcan.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2021 Freek van Tienen <freek.v.tienen@gmail.com>
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
26#ifndef MODULES_UAVCAN_ARCH_H
27#define MODULES_UAVCAN_ARCH_H
28
29#include <canard.h>
30#include <string.h>
31#include "mcu_periph/can.h"
34
35
36#ifndef UAVCAN_TX_FIFO_SIZE
37#define UAVCAN_TX_FIFO_SIZE 1024
38#endif
39
40#ifndef UAVCAN_MSG_MAX_SIZE
41#define UAVCAN_MSG_MAX_SIZE 256
42#endif
43
44
71
74
83
85#if UAVCAN_USE_CAN1
86extern struct uavcan_iface_t uavcan1;
87#endif
88#if UAVCAN_USE_CAN2
89extern struct uavcan_iface_t uavcan2;
90#endif
91
93void uavcan_init(void);
94void uavcan_bind(uint16_t data_type_id, uint64_t data_type_signature, uavcan_event *ev, uavcan_callback cb);
95void uavcan_broadcast(struct uavcan_iface_t *iface, uint64_t data_type_signature, uint16_t data_type_id,
96 uint8_t priority, const void *payload, uint16_t payload_len);
97
98#endif /* MODULES_UAVCAN_ARCH_H */
thread_t * pprz_thread_t
void(* uavcan_callback)(struct uavcan_iface_t *iface, CanardRxTransfer *transfer)
Generic uavcan callback definition.
Definition uavcan.h:73
void uavcan_init(void)
uavcan interfaces
Definition uavcan.c:237
uint16_t data_type_id
Definition uavcan.h:77
void uavcan_broadcast(struct uavcan_iface_t *iface, uint64_t data_type_signature, uint16_t data_type_id, uint8_t priority, const void *payload, uint16_t payload_len)
Broadcast an uavcan message to a specific interface.
Definition uavcan.c:265
#define UAVCAN_TX_FIFO_SIZE
Definition uavcan.h:37
struct uavcan_event_t * next
Definition uavcan.h:80
uavcan_callback cb
Definition uavcan.h:79
uint64_t data_type_signature
Definition uavcan.h:78
void uavcan_bind(uint16_t data_type_id, uint64_t data_type_signature, uavcan_event *ev, uavcan_callback cb)
Bind to a receiving message from uavcan.
Definition uavcan.c:250
Main uavcan event structure for registering/calling callbacks.
Definition uavcan.h:76
This is a general purpose circular buffer for storing variable lenght buffers in a FIFO order.
uint16_t foo
Definition main_demo5.c:58
abi_event ev
Definition rssi.c:45
pprz_mutex_t mutex
Definition uavcan.h:52
uint8_t _tx_fifo_buffer[UAVCAN_TX_FIFO_SIZE]
Definition uavcan.h:64
event_source_t tx_request
Definition uavcan.h:50
uint32_t can_baudrate
Definition uavcan.h:48
bool initialized
Definition uavcan.h:69
struct pprzaddr_can can_net
Definition uavcan.h:47
pprz_bsem_t bsem
Definition uavcan.h:58
uint8_t transfer_id
Definition uavcan.h:68
pprz_mutex_t tx_fifo_mutex
Definition uavcan.h:66
pprz_thread_t thread_tx
Definition uavcan.h:53
struct circular_buffer _tx_fifo
Definition uavcan.h:65
uint8_t node_id
Definition uavcan.h:60
CanardInstance canard
Definition uavcan.h:61
uint8_t canard_memory_pool[1024 *2]
Definition uavcan.h:62
uavcan interface structure
Definition uavcan.h:46
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned long long uint64_t
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
int transfer(const Mat *from, const image_t *to)