#include <inttypes.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "spandsp/telephony.h"
#include "spandsp/async.h"
Functions | |
async_rx_state_t * | async_rx_init (async_rx_state_t *s, int data_bits, int parity, int stop_bits, int use_v14, put_byte_func_t put_byte, void *user_data) |
Initialise an asynchronous data receiver context. | |
void | async_rx_put_bit (void *user_data, int bit) |
Accept a bit from a received serial bit stream. | |
async_tx_state_t * | async_tx_init (async_tx_state_t *s, int data_bits, int parity, int stop_bits, int use_v14, get_byte_func_t get_byte, void *user_data) |
Initialise an asynchronous data transmit context. | |
int | async_tx_get_bit (void *user_data) |
Get the next bit of a transmitted serial bit stream. |
|
Initialise an asynchronous data receiver context. Initialise an asynchronous data receiver context.
|
|
Accept a bit from a received serial bit stream. Accept a bit from a received serial bit stream
|
|
Get the next bit of a transmitted serial bit stream. Get the next bit of a transmitted serial bit stream.
|
|
Initialise an asynchronous data transmit context. Initialise an asynchronous data transmit context.
|