mirror of
https://github.com/peterantypas/maiana.git
synced 2025-05-16 15:30:10 -07:00
18 lines
260 B
C++
18 lines
260 B
C++
/*
|
|
* si4467.cpp
|
|
*
|
|
* Created on: Dec 20, 2020
|
|
* Author: peter
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include "radio_config_si4467.h"
|
|
|
|
|
|
static uint8_t __si_4467_cfg[] = RADIO_CONFIGURATION_DATA_ARRAY;
|
|
|
|
uint8_t* get_si4467_config_array()
|
|
{
|
|
return __si_4467_cfg;
|
|
}
|