| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Copyright 2020 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include "hal/interrupt_controller_hal.h"
- int_type_t interrupt_controller_hal_desc_type(int interrupt_number)
- {
- const int_desc_t *int_desc = interrupt_controller_hal_desc_table();
- return(int_desc[interrupt_number].type);
- }
- int interrupt_controller_hal_desc_level(int interrupt_number)
- {
- const int_desc_t *int_desc = interrupt_controller_hal_desc_table();
- return(int_desc[interrupt_number].level);
- }
- int_desc_flag_t interrupt_controller_hal_desc_flags(int interrupt_number, int cpu_number)
- {
- const int_desc_t *int_desc = interrupt_controller_hal_desc_table();
- return(int_desc[interrupt_number].cpuflags[cpu_number]);
- }
- #if SOC_INTERRUPT_LEVEL_CAN_SET
- void interrupt_controller_hal_set_level(int interrupt_number, int level) {
- intr_cntrl_ll_set_level(interrupt_number, level);
- }
- #endif
- #if SOC_INTERRUPT_TYPE_CAN_SET
- void interrupt_controller_hal_set_type(int interrupt_number, int_type_t type) {
- intr_cntrl_ll_set_type(interrupt_number, type);
- }
- #endif
|