TMPM4G9
V1.0.0.0
|
Functions | |
TXZ_Result | fuart_io_initialize (fuart_io_initial_setting_t *p_param) |
Initialize. More... | |
void | fuart_io_finalize (void) |
Finalize. More... | |
void | fuart_io_irq_handler (void) |
FUART IRQ Handler. More... | |
TXZ_Result | fuart_io_receive_stop (void) |
Receive Stop. More... | |
TXZ_Result | fuart_io_receive_restart (void) |
Receive Restar. More... | |
int | put_s (const char *s) |
The character is shown to an output stream. More... | |
int | get_s (char *s, uint8_t num) |
The string is acquired from an input stream. More... | |
fuart_io_mdma_t * | fuart_io_mdma_initialize (fuart_io_mdma_initial_setting_t *p_param) |
Initialize. More... | |
void | fuart_io_mdma_finalize (fuart_io_mdma_t *p_instance) |
Finalize. More... | |
void | led_initialize (led_t *p_instance) |
Initialize. More... | |
void | led_finalize (led_t *p_instance) |
Finalize. More... | |
void | led_task (led_t *p_instance) |
Task Processing. More... | |
void | led_turn_on (led_t *p_instance) |
Turn on. More... | |
void | led_turn_off (led_t *p_instance) |
Turn off. More... | |
void | led_1ms_timer_handler (led_t *p_instance) |
1ms Timer Handler More... | |
void | pulse_initialize (pulse_t *p_instance) |
void | pulse_timer_finalize (pulse_t *p_instance) |
void | pulse_timer_start (pulse_t *p_instance) |
void | pulse_timer_stop (pulse_t *p_instance) |
void | pulse_timer_irq_handler (pulse_t *p_instance) |
TXZ_Result | rtc_init (rtc_t *p_obj) |
Construct object. More... | |
TXZ_Result | rtc_deinit (rtc_t *p_obj) |
Destruct object. More... | |
TXZ_Result | rtc_enable_int (rtc_t *p_obj) |
Enable INTRTC. More... | |
TXZ_Result | rtc_disable_int (rtc_t *p_obj) |
Disable INTRTC. More... | |
TXZ_Result | rtc_set_int_source (rtc_t *p_obj, uint8_t src) |
Set interrupt source signal. More... | |
TXZ_Result | rtc_set_hour_notation (rtc_t *p_obj, uint8_t notation) |
Set hour notation. More... | |
TXZ_Result | rtc_get_hour_notation (rtc_t *p_obj, uint8_t *p_notation) |
Get hour notation. More... | |
TXZ_Result | rtc_clock_enable (rtc_t *p_obj) |
Enable clock(timer). More... | |
TXZ_Result | rtc_clock_disable (rtc_t *p_obj) |
Disable clock(timer). More... | |
TXZ_Result | rtc_clock_reset_counter (rtc_t *p_obj) |
Reset the second counter. More... | |
TXZ_Result | rtc_clock_set_sec (rtc_t *p_obj, uint8_t sec) |
Set clock second. More... | |
TXZ_Result | rtc_clock_get_sec (rtc_t *p_obj, uint8_t *p_sec) |
Get clock second. More... | |
TXZ_Result | rtc_clock_set_min (rtc_t *p_obj, uint8_t min) |
Set clock minute. More... | |
TXZ_Result | rtc_clock_get_min (rtc_t *p_obj, uint8_t *p_min) |
Get clock minute. More... | |
TXZ_Result | rtc_clock_set_hour_24 (rtc_t *p_obj, uint8_t hour) |
Set clock hour. More... | |
TXZ_Result | rtc_clock_get_hour_24 (rtc_t *p_obj, uint8_t *p_hour) |
Get clock hour. More... | |
TXZ_Result | rtc_clock_set_hour_12 (rtc_t *p_obj, uint8_t meridiem, uint8_t hour) |
Set clock hour. More... | |
TXZ_Result | rtc_clock_get_hour_12 (rtc_t *p_obj, uint8_t *p_meridiem, uint8_t *p_hour) |
Get clock hour. More... | |
TXZ_Result | rtc_clock_set_day (rtc_t *p_obj, uint8_t day) |
Set clock day. More... | |
TXZ_Result | rtc_clock_get_day (rtc_t *p_obj, uint8_t *p_day) |
Get clock day. More... | |
TXZ_Result | rtc_clock_set_date (rtc_t *p_obj, uint8_t date) |
Set clock date. More... | |
TXZ_Result | rtc_clock_get_date (rtc_t *p_obj, uint8_t *p_date) |
Get clock date. More... | |
TXZ_Result | rtc_clock_set_month (rtc_t *p_obj, uint8_t month) |
Set clock month. More... | |
TXZ_Result | rtc_clock_get_month (rtc_t *p_obj, uint8_t *p_month) |
Get clock month. More... | |
TXZ_Result | rtc_clock_set_year (rtc_t *p_obj, uint8_t year) |
Set clock year. More... | |
TXZ_Result | rtc_clock_get_year (rtc_t *p_obj, uint8_t *p_year) |
Get clock year. More... | |
TXZ_Result | rtc_clock_set_leap (rtc_t *p_obj, uint8_t leap) |
Set clock leap. More... | |
TXZ_Result | rtc_clock_get_leap (rtc_t *p_obj, uint8_t *p_leap) |
Get clock leap. More... | |
TXZ_Result | rtc_alarm_enable (rtc_t *p_obj) |
Enable alarm. More... | |
TXZ_Result | rtc_alarm_disable (rtc_t *p_obj) |
Disable alarm. More... | |
TXZ_Result | rtc_alarm_reset (rtc_t *p_obj) |
Reset alarm. More... | |
TXZ_Result | rtc_alarm_set_min (rtc_t *p_obj, uint8_t compare, uint8_t min) |
Set alarm minute. More... | |
TXZ_Result | rtc_alarm_get_min (rtc_t *p_obj, uint8_t *p_compare, uint8_t *p_min) |
Get alarm minute. More... | |
TXZ_Result | rtc_alarm_set_hour_24 (rtc_t *p_obj, uint8_t compare, uint8_t hour) |
Set alarm hour. More... | |
TXZ_Result | rtc_alarm_get_hour_24 (rtc_t *p_obj, uint8_t *p_compare, uint8_t *p_hour) |
Get alarm hour. More... | |
TXZ_Result | rtc_alarm_set_hour_12 (rtc_t *p_obj, uint8_t compare, uint8_t meridiem, uint8_t hour) |
Set alarm hour. More... | |
TXZ_Result | rtc_alarm_get_hour_12 (rtc_t *p_obj, uint8_t *p_compare, uint8_t *p_meridiem, uint8_t *p_hour) |
Get alarm hour. More... | |
TXZ_Result | rtc_alarm_set_day (rtc_t *p_obj, uint8_t compare, uint8_t day) |
Set alarm day. More... | |
TXZ_Result | rtc_alarm_get_day (rtc_t *p_obj, uint8_t *p_compare, uint8_t *p_day) |
Get alarm day. More... | |
TXZ_Result | rtc_alarm_set_date (rtc_t *p_obj, uint8_t compare, uint8_t date) |
Set alarm date. More... | |
TXZ_Result | rtc_alarm_get_date (rtc_t *p_obj, uint8_t *p_compare, uint8_t *p_date) |
Get alarm date. More... | |
void | sw_initialize (sw_t *p_instance) |
Initialize. More... | |
void | sw_finalize (sw_t *p_instance) |
Finalize. More... | |
void | sw_task (sw_t *p_instance) |
Task Processing. More... | |
void | sw_1ms_timer_handler (sw_t *p_instance) |
1ms Timer Handler More... | |
void | timer_initialize (timer_t *p_instance) |
void | timer_finalize (timer_t *p_instance) |
void | timer_start (timer_t *p_instance) |
void | timer_stop (timer_t *p_instance) |
void | timer_irq_handler (timer_t *p_instance) |
TXZ_Result | uart_io_initialize (uart_io_initial_setting_t *p_param) |
Initialize. More... | |
TXZ_Result | uart_io_rx_restart (void) |
void | uart_io_finalize (void) |
Finalize. More... | |
void | uart_io_tx_irq_handler (void) |
TX IRQ Handler. More... | |
void | uart_io_rx_irq_handler (void) |
RX IRQ Handler. More... | |
void | uart_io_err_irq_handler (void) |
ERR IRQ Handler. More... | |
int | get_char_once (void) |
The character is acquired from an input stream. More... | |
uart_io_mdma_t * | uart_io_mdma_initialize (uart_io_mdma_initial_setting_t *p_param) |
Initialize. More... | |
void | uart_io_mdma_finalize (uart_io_mdma_t *p_instance) |
Finalize. More... | |
void fuart_io_finalize | ( | void | ) |
Finalize.
- |
- |
TXZ_Result fuart_io_initialize | ( | fuart_io_initial_setting_t * | p_param | ) |
Initialize.
p_param | :Initial Setting Information Source Address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
void fuart_io_irq_handler | ( | void | ) |
FUART IRQ Handler.
- |
- |
void fuart_io_mdma_finalize | ( | fuart_io_mdma_t * | p_instance | ) |
Finalize.
p_instance | :Instance Address. |
- |
fuart_io_mdma_t * fuart_io_mdma_initialize | ( | fuart_io_mdma_initial_setting_t * | p_param | ) |
Initialize.
p_param | :Initial Setting Information Source Address. |
- |
TXZ_Result fuart_io_receive_restart | ( | void | ) |
Receive Restar.
- |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result fuart_io_receive_stop | ( | void | ) |
Receive Stop.
- |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
int get_char_once | ( | void | ) |
The character is acquired from an input stream.
- |
(value | < 0) :Failure |
int get_s | ( | char * | s, |
uint8_t | num | ||
) |
The string is acquired from an input stream.
The character is acquired from an input stream.
[in] | s | :Destination address. |
[in] | num |
Suceess | :Num of input data(bytes). |
Failure | :-1 |
s | |
num | : Number of Input Caracter |
(value | < 0) :Failure |
void led_1ms_timer_handler | ( | led_t * | p_instance | ) |
1ms Timer Handler
p_instance | :Instance Source Address. |
- |
void led_finalize | ( | led_t * | p_instance | ) |
Finalize.
p_instance | :Instance Source Address. |
- |
void led_initialize | ( | led_t * | p_instance | ) |
Initialize.
p_instance | :Instance Source Address. |
- |
void led_task | ( | led_t * | p_instance | ) |
Task Processing.
p_instance | :Instance Source Address. |
- |
void led_turn_off | ( | led_t * | p_instance | ) |
Turn off.
p_instance | :Instance Source Address. |
- |
void led_turn_on | ( | led_t * | p_instance | ) |
Turn on.
p_instance | :Instance Source Address. |
- |
void pulse_initialize | ( | pulse_t * | p_instance | ) |
void pulse_timer_finalize | ( | pulse_t * | p_instance | ) |
void pulse_timer_irq_handler | ( | pulse_t * | p_instance | ) |
void pulse_timer_start | ( | pulse_t * | p_instance | ) |
void pulse_timer_stop | ( | pulse_t * | p_instance | ) |
int put_s | ( | const char * | s | ) |
The character is shown to an output stream.
[in] | s | :Source address. |
Suceess | :Num of output data(bytes). |
Failure | :-1 |
TXZ_Result rtc_alarm_disable | ( | rtc_t * | p_obj | ) |
Disable alarm.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_enable | ( | rtc_t * | p_obj | ) |
Enable alarm.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_get_date | ( | rtc_t * | p_obj, |
uint8_t * | p_compare, | ||
uint8_t * | p_date | ||
) |
Get alarm date.
[in] | p_obj | :Object address. |
[out] | p_compare | :Compare to clock's date (Alarm Date). Destination address. |
[out] | *p_date | :Date. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_get_day | ( | rtc_t * | p_obj, |
uint8_t * | p_compare, | ||
uint8_t * | p_day | ||
) |
Get alarm day.
[in] | p_obj | :Object address. |
[out] | p_compare | :Compare to clock's day (Alarm Day). Destination address. |
[out] | p_day | :Day Day Of Week. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_get_hour_12 | ( | rtc_t * | p_obj, |
uint8_t * | p_compare, | ||
uint8_t * | p_meridiem, | ||
uint8_t * | p_hour | ||
) |
Get alarm hour.
[in] | p_obj | : Object address. |
[out] | p_compare | : Compare to clock's hour (Alarm Hour). Destination address. |
[out] | p_meridiem | Meridiem. |
[out] | p_hour | : Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_get_hour_24 | ( | rtc_t * | p_obj, |
uint8_t * | p_compare, | ||
uint8_t * | p_hour | ||
) |
Get alarm hour.
[in] | p_obj | :Object address. |
[out] | p_compare | :Compare to clock's hour (Alarm Hour). Destination address. |
[out] | p_hour | :Hour. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_get_min | ( | rtc_t * | p_obj, |
uint8_t * | p_compare, | ||
uint8_t * | p_min | ||
) |
Get alarm minute.
[in] | p_obj | :Object address. |
[out] | p_compare | :Compare to clock's minute(Alarm Minute). Destination address. |
[out] | p_min | :Minute. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_reset | ( | rtc_t * | p_obj | ) |
Reset alarm.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_set_date | ( | rtc_t * | p_obj, |
uint8_t | compare, | ||
uint8_t | date | ||
) |
Set alarm date.
[in] | p_obj | :Object address. |
[in] | compare | :Compare to clock's date. Use Alarm Date. |
[in] | date | :Date. Range is Range Date. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_set_day | ( | rtc_t * | p_obj, |
uint8_t | compare, | ||
uint8_t | day | ||
) |
Set alarm day.
[in] | p_obj | :Object address. |
[in] | compare | :Compare to clock's day. Use Alarm Day. |
[in] | day | :Day. Use Day Of Week. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_set_hour_12 | ( | rtc_t * | p_obj, |
uint8_t | compare, | ||
uint8_t | meridiem, | ||
uint8_t | hour | ||
) |
Set alarm hour.
[in] | p_obj | |
[in] | compare | |
[in] | meridiem | |
[in] | hour |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_set_hour_24 | ( | rtc_t * | p_obj, |
uint8_t | compare, | ||
uint8_t | hour | ||
) |
Set alarm hour.
[in] | p_obj | :Object address. |
[in] | compare | :Compare to clock's hour. Use Alarm Hour. |
[in] | hour | :Hour. Range is Range 24 Hour. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_alarm_set_min | ( | rtc_t * | p_obj, |
uint8_t | compare, | ||
uint8_t | min | ||
) |
Set alarm minute.
[in] | p_obj | :Object address. |
[in] | compare | :Compare to clock's minute. Use Alarm Minute. |
[in] | min | :Minute. Range is Range Minute. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_disable | ( | rtc_t * | p_obj | ) |
Disable clock(timer).
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_enable | ( | rtc_t * | p_obj | ) |
Enable clock(timer).
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_date | ( | rtc_t * | p_obj, |
uint8_t * | p_date | ||
) |
Get clock date.
[in] | p_obj | :Object address. |
[out] | *p_date | :Date. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_day | ( | rtc_t * | p_obj, |
uint8_t * | p_day | ||
) |
Get clock day.
[in] | p_obj | :Object address. |
[out] | p_day | :Day Day Of Week. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_hour_12 | ( | rtc_t * | p_obj, |
uint8_t * | p_meridiem, | ||
uint8_t * | p_hour | ||
) |
Get clock hour.
[in] | p_obj | : Object address |
[out] | p_meridiem | : Meridiem |
[out] | p_hour | : Destination address |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_hour_24 | ( | rtc_t * | p_obj, |
uint8_t * | p_hour | ||
) |
Get clock hour.
[in] | p_obj | :Object address. |
[out] | p_hour | :Hour. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_leap | ( | rtc_t * | p_obj, |
uint8_t * | p_leap | ||
) |
Get clock leap.
[in] | p_obj | :Object address. |
[out] | *p_leap | :Leap Leap Year. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_min | ( | rtc_t * | p_obj, |
uint8_t * | p_min | ||
) |
Get clock minute.
[in] | p_obj | :Object address. |
[out] | p_min | :Minute. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_month | ( | rtc_t * | p_obj, |
uint8_t * | p_month | ||
) |
Get clock month.
[in] | p_obj | :Object address. |
[out] | p_month | :Month. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_sec | ( | rtc_t * | p_obj, |
uint8_t * | p_sec | ||
) |
Get clock second.
[in] | p_obj | :Object address. |
[out] | *p_sec | :Second. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_get_year | ( | rtc_t * | p_obj, |
uint8_t * | p_year | ||
) |
Get clock year.
[in] | p_obj | :Object address. |
[out] | p_year | :Year. Destination address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_reset_counter | ( | rtc_t * | p_obj | ) |
Reset the second counter.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_date | ( | rtc_t * | p_obj, |
uint8_t | date | ||
) |
Set clock date.
[in] | p_obj | :Object address. |
[in] | date | :Date. Range is Range Date. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_day | ( | rtc_t * | p_obj, |
uint8_t | day | ||
) |
Set clock day.
[in] | p_obj | :Object address. |
[in] | day | :Day. Use Day Of Week. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_hour_12 | ( | rtc_t * | p_obj, |
uint8_t | meridiem, | ||
uint8_t | hour | ||
) |
Set clock hour.
[in] | p_obj | : Object address. |
[in] | meridiem | : Meridiem. |
[in] | hour | : Range 12 Hour. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_hour_24 | ( | rtc_t * | p_obj, |
uint8_t | hour | ||
) |
Set clock hour.
[in] | p_obj | :Object address. |
[in] | hour | :Hour. Range is Range 24 Hour. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_leap | ( | rtc_t * | p_obj, |
uint8_t | leap | ||
) |
Set clock leap.
[in] | p_obj | :Object address. |
[in] | leap | :Leap. Use Leap Year. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_min | ( | rtc_t * | p_obj, |
uint8_t | min | ||
) |
Set clock minute.
[in] | p_obj | :Object address. |
[in] | min | :Minute. Range is Range Minute. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_month | ( | rtc_t * | p_obj, |
uint8_t | month | ||
) |
Set clock month.
[in] | p_obj | :Object address. |
[in] | month | :Month. Use Month. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_sec | ( | rtc_t * | p_obj, |
uint8_t | sec | ||
) |
Set clock second.
[in] | p_obj | :Object address. |
[in] | sec | :Second. Range is Range Second. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_clock_set_year | ( | rtc_t * | p_obj, |
uint8_t | year | ||
) |
Set clock year.
[in] | p_obj | :Object address. |
[in] | year | :Year. Range is Range Year. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_deinit | ( | rtc_t * | p_obj | ) |
Destruct object.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_disable_int | ( | rtc_t * | p_obj | ) |
Disable INTRTC.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_enable_int | ( | rtc_t * | p_obj | ) |
Enable INTRTC.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_get_hour_notation | ( | rtc_t * | p_obj, |
uint8_t * | p_notation | ||
) |
Get hour notation.
[in] | p_obj | : Object address. |
[out] | p_notation | : Hour Notation. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_init | ( | rtc_t * | p_obj | ) |
Construct object.
[in] | p_obj | :Object address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_set_hour_notation | ( | rtc_t * | p_obj, |
uint8_t | notation | ||
) |
Set hour notation.
[in] | p_obj | : Object address. |
[in] | notation | Use Hour Notation. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
TXZ_Result rtc_set_int_source | ( | rtc_t * | p_obj, |
uint8_t | src | ||
) |
Set interrupt source signal.
[in] | p_obj | :Object address. |
[in] | src | :Interrupt source signal. Use Interrupt Source Signal |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
void sw_1ms_timer_handler | ( | sw_t * | p_instance | ) |
1ms Timer Handler
p_instance | :Instance Source Address. |
- |
void sw_finalize | ( | sw_t * | p_instance | ) |
Finalize.
p_instance | :Instance Source Address. |
- |
void sw_initialize | ( | sw_t * | p_instance | ) |
Initialize.
p_instance | :Instance Source Address. |
- |
void sw_task | ( | sw_t * | p_instance | ) |
Task Processing.
p_instance | :Instance Source Address. |
- |
void timer_finalize | ( | timer_t * | p_instance | ) |
void timer_initialize | ( | timer_t * | p_instance | ) |
void timer_irq_handler | ( | timer_t * | p_instance | ) |
void timer_start | ( | timer_t * | p_instance | ) |
void timer_stop | ( | timer_t * | p_instance | ) |
void uart_io_err_irq_handler | ( | void | ) |
ERR IRQ Handler.
- |
- |
void uart_io_finalize | ( | void | ) |
Finalize.
- |
- |
TXZ_Result uart_io_initialize | ( | uart_io_initial_setting_t * | p_param | ) |
Initialize.
p_param | :Initial Setting Information Source Address. |
TXZ_SUCCESS | :Success |
TXZ_ERROR | :Failure |
void uart_io_mdma_finalize | ( | uart_io_mdma_t * | p_instance | ) |
Finalize.
p_instance | :Instance Address. |
- |
uart_io_mdma_t * uart_io_mdma_initialize | ( | uart_io_mdma_initial_setting_t * | p_param | ) |
Initialize.
p_param | :Initial Setting Information Source Address. |
- |
void uart_io_rx_irq_handler | ( | void | ) |
RX IRQ Handler.
- |
- |
TXZ_Result uart_io_rx_restart | ( | void | ) |
void uart_io_tx_irq_handler | ( | void | ) |
TX IRQ Handler.
- |
- |