CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_DroneCAN/canard/canard_helpers_user.h
Views: 1799
1
#include <AP_HAL/AP_HAL.h> // to include SEMAPHORE
2
3
namespace Canard {
4
typedef ::HAL_Semaphore Semaphore;
5
}
6
7
#define CANARD_MALLOC malloc
8
#define CANARD_FREE free
9
10