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.
15 lines
285 B
15 lines
285 B
6 years ago
|
#pragma once
|
||
|
|
||
|
#include "sdkconfig.h"
|
||
|
|
||
|
#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
|