1 /*
2  * Copyright (c) 2016 Brian Swetland
3  *
4  * Use of this source code is governed by a MIT-style
5  * license that can be found in the LICENSE file or at
6  * https://opensource.org/licenses/MIT
7  */
8 
9 #pragma once
10 
11 #include <platform/ti-rf.h>
12 #include <platform/ti-rf-prop.h>
13 
14 void radio_init(void);
15 
16 uint32_t radio_send_cmd(uint32_t cmd);
17 void radio_wait_cmd(uint16_t *status);
18 
19 
20 
21