You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
354 B
22 lines
354 B
#pragma once |
|
|
|
#include "sdkconfig.h" |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
#ifdef CONFIG_SX127X_USE_NANOPB |
|
|
|
#include "sx127x_driver.h" |
|
|
|
#include <pb_common.h> |
|
|
|
esp_err_t sx127x_send_packet_pb(sx127x_hndl hndl, const pb_field_t fields[], |
|
void *src_struct, TickType_t ticks_to_wait); |
|
|
|
#endif |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif
|
|
|