no-OS
no_os_tdm.h
Go to the documentation of this file.
1 /***************************************************************************/
39 #ifndef _NO_OS_TDM_H_
40 #define _NO_OS_TDM_H_
41 
42 #include <stdint.h>
43 #include <stdbool.h>
44 
51 
57 };
58 
67  uint8_t data_size;
69  uint8_t data_offset;
73  uint8_t slots_per_frame;
79  bool fs_lastbit;
85  void *extra;
86 };
87 
96  void *extra;
97 };
98 
106  int32_t (*tdm_ops_init)(struct no_os_tdm_desc **,
107  const struct no_os_tdm_init_param *);
109  int32_t (*tdm_ops_read)(struct no_os_tdm_desc *, void *, uint16_t);
111  int32_t (*tdm_ops_write)(struct no_os_tdm_desc *, void *, uint16_t);
113  int32_t (*tdm_ops_remove)(struct no_os_tdm_desc *);
114 };
115 
116 /* Initialize the TDM communication peripheral. */
117 int32_t no_os_tdm_init(struct no_os_tdm_desc **desc,
118  const struct no_os_tdm_init_param *param);
119 
120 /* Free the resources allocated by no_os_tdm_init(). */
121 int32_t no_os_tdm_remove(struct no_os_tdm_desc *desc);
122 
123 /* Read data. */
124 int32_t no_os_tdm_read(struct no_os_tdm_desc *desc,
125  void *data,
126  uint16_t bytes_number);
127 
128 /* Write data. */
129 int32_t no_os_tdm_write(struct no_os_tdm_desc *desc,
130  void *data,
131  uint16_t bytes_number);
132 
133 #endif // _NO_OS_TDM_H_
no_os_tdm_write
int32_t no_os_tdm_write(struct no_os_tdm_desc *desc, void *data, uint16_t bytes_number)
Write data using the TDM interface.
Definition: no_os_tdm.c:96
NO_OS_TDM_MASTER_RX
@ NO_OS_TDM_MASTER_RX
Definition: no_os_tdm.h:54
no_os_tdm_desc::extra
void * extra
Definition: no_os_tdm.h:96
no_os_tdm_platform_ops::tdm_ops_write
int32_t(* tdm_ops_write)(struct no_os_tdm_desc *, void *, uint16_t)
Definition: no_os_tdm.h:111
no_os_tdm_init_param::fs_active_length
uint8_t fs_active_length
Definition: no_os_tdm.h:77
no_os_tdm_init_param::data_offset
uint8_t data_offset
Definition: no_os_tdm.h:69
no_os_tdm_init_param::platform_ops
const struct no_os_tdm_platform_ops * platform_ops
Definition: no_os_tdm.h:83
no_os_tdm_init_param::fs_lastbit
bool fs_lastbit
Definition: no_os_tdm.h:79
no_os_tdm_platform_ops::tdm_ops_read
int32_t(* tdm_ops_read)(struct no_os_tdm_desc *, void *, uint16_t)
Definition: no_os_tdm.h:109
NO_OS_TDM_SLAVE_RX
@ NO_OS_TDM_SLAVE_RX
Definition: no_os_tdm.h:56
no_os_tdm_platform_ops::tdm_ops_remove
int32_t(* tdm_ops_remove)(struct no_os_tdm_desc *)
Definition: no_os_tdm.h:113
no_os_tdm_init_param::mode
enum no_os_tdm_mode mode
Definition: no_os_tdm.h:65
no_os_tdm_init
int32_t no_os_tdm_init(struct no_os_tdm_desc **desc, const struct no_os_tdm_init_param *param)
Initialize the TDM communication peripheral.
Definition: no_os_tdm.c:51
no_os_tdm_desc
Structure holding TDM descriptor.
Definition: no_os_tdm.h:92
no_os_tdm_init_param::fs_active_low
bool fs_active_low
Definition: no_os_tdm.h:75
no_os_tdm_platform_ops
Structure holding TDM function pointers that point to the platform specific function.
Definition: no_os_tdm.h:104
no_os_tdm_init_param::data_lsb_first
bool data_lsb_first
Definition: no_os_tdm.h:71
NO_OS_TDM_SLAVE_TX
@ NO_OS_TDM_SLAVE_TX
Definition: no_os_tdm.h:55
no_os_tdm_init_param::extra
void * extra
Definition: no_os_tdm.h:85
no_os_tdm_mode
no_os_tdm_mode
Definition: no_os_tdm.h:52
no_os_tdm_read
int32_t no_os_tdm_read(struct no_os_tdm_desc *desc, void *data, uint16_t bytes_number)
Read data using the TDM interface.
Definition: no_os_tdm.c:82
NO_OS_TDM_MASTER_TX
@ NO_OS_TDM_MASTER_TX
Definition: no_os_tdm.h:53
no_os_tdm_platform_ops::tdm_ops_init
int32_t(* tdm_ops_init)(struct no_os_tdm_desc **, const struct no_os_tdm_init_param *)
Definition: no_os_tdm.h:106
no_os_tdm_remove
int32_t no_os_tdm_remove(struct no_os_tdm_desc *desc)
Free the resources allocated by no_os_tdm_init().
Definition: no_os_tdm.c:70
no_os_tdm_init_param::data_size
uint8_t data_size
Definition: no_os_tdm.h:67
no_os_tdm_init_param
Structure holding the parameters for TDM initialization.
Definition: no_os_tdm.h:63
no_os_tdm_init_param::slots_per_frame
uint8_t slots_per_frame
Definition: no_os_tdm.h:73
no_os_tdm_desc::platform_ops
const struct no_os_tdm_platform_ops * platform_ops
Definition: no_os_tdm.h:94
no_os_tdm_init_param::rising_edge_sampling
bool rising_edge_sampling
Definition: no_os_tdm.h:81