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.
20 lines
379 B
20 lines
379 B
//
|
|
// Created by MightyPork on 2018/04/06.
|
|
//
|
|
|
|
#ifndef GEX_F072_IFACE_NORDIC_H
|
|
#define GEX_F072_IFACE_NORDIC_H
|
|
|
|
#include "platform.h"
|
|
|
|
void iface_nordic_claim_resources(void);
|
|
|
|
void iface_nordic_free_resources(void);
|
|
|
|
void iface_nordic_deinit(void);
|
|
|
|
bool iface_nordic_init(void);
|
|
|
|
void iface_nordic_transmit(const uint8_t *buff, uint32_t len);
|
|
|
|
#endif //GEX_F072_IFACE_NORDIC_H
|
|
|