blob: c8c142f380a3c21f905c4ef41077df22664323de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef SPKMODEM_H
#define SPKMODEM_H 1
#include <stdint.h>
void spkmodem_init(void);
void spkmodem_tx_byte(unsigned char c);
#if CONFIG(SPKMODEM) && (ENV_ROMSTAGE || ENV_RAMSTAGE)
static inline void __spkmodem_init(void) { spkmodem_init(); }
static inline void __spkmodem_tx_byte(u8 data) { spkmodem_tx_byte(data); }
#else
static inline void __spkmodem_init(void) {}
static inline void __spkmodem_tx_byte(u8 data) {}
#endif
#endif
|