SAM TC - Timer Counter Driver.
Copyright (c) 2013-2018 Microchip Technology Inc. and its subsidiaries.
Macros | |
#define | _TC_INTERRUPT_VECT_NUM(n, unused) SYSTEM_INTERRUPT_MODULE_TC##n, |
Functions | |
uint8_t | _tc_get_inst_index (Tc *const hw) |
uint32_t | tc_get_capture_value (const struct tc_module *const module_inst, const enum tc_compare_capture_channel channel_index) |
Gets the TC module capture value. More... | |
uint32_t | tc_get_count_value (const struct tc_module *const module_inst) |
Get TC module count value. More... | |
enum status_code | tc_init (struct tc_module *const module_inst, Tc *const hw, const struct tc_config *const config) |
Initializes a hardware TC module instance. More... | |
enum status_code | tc_reset (const struct tc_module *const module_inst) |
Resets the TC module. More... | |
enum status_code | tc_set_compare_value (const struct tc_module *const module_inst, const enum tc_compare_capture_channel channel_index, const uint32_t compare) |
Sets a TC module compare value. More... | |
enum status_code | tc_set_count_value (const struct tc_module *const module_inst, const uint32_t count) |
Sets TC module count value. More... | |
enum status_code | tc_set_top_value (const struct tc_module *const module_inst, const uint32_t top_value) |
Set the timer TOP/period value. More... | |
#define _TC_INTERRUPT_VECT_NUM | ( | n, | |
unused | |||
) | SYSTEM_INTERRUPT_MODULE_TC##n, |
Converts a given TC index to its interrupt vector index.
uint8_t _tc_get_inst_index | ( | Tc *const | hw | ) |
Find the index of given TC module instance.
[in] | TC | module instance pointer |
Referenced by tc_enable_callback(), and tc_init().