update bindings again

This commit is contained in:
2024-06-01 14:31:45 +02:00
parent 75672c79b4
commit 776da7b55e
6 changed files with 3578 additions and 250 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +1,4 @@
#!/bin/bash
bindgen --use-core wrapper.h -- "-I./libcsp/include" "-I./cfg" "-I./libcsp/src" > bindings.rs
bindgen_cmd="bindgen --use-core wrapper.h -- '-I./libcsp/include' '-I./cfg' '-I./libcsp/src' > bindings.rs"
echo "Running: $bindgen_cmd"
eval $bindgen_cmd

View File

@ -1,2 +1,4 @@
#include "csp/csp.h"
#include "csp/interfaces/csp_if_lo.h"
#include "csp/interfaces/csp_if_udp.h"
#include "csp_conn.h"