gpt4 book ai didi

c - 使用 freeRTOS 的 Microblaze 中断示例给出了 _interrupt_handler 的多个定义

转载 作者:太空宇宙 更新时间:2023-11-04 04:27:40 24 4
gpt4 key购买 nike

我使用具有 FreeRTOS 的 Xilinx SDK 创建了一个简单的示例程序,但我遇到了一个似乎非常出乎意料的问题。我想触发一个软件中断,所以我以这种方式设置了代码。

void software_test( void ) __attribute__((interrupt_handler));

void software_test( void )
{
// clear the interrupt
*((volatile uint32_t *) 0x4120000C) = 0x80;
interrupt_occurred++;
}

当我尝试编译它时提示:

\interrupt_example_bsp\microblaze_0\libsrc\freertos823_xilinx_v1_1\src/portasm.S:288: multiple definition of `_interrupt_handler'
./src/freertos_hello_world.o:\Debug/../src/freertos_hello_world.c:130: first defined here

我检查了 portasm.S,里面有以下代码:

.global _interrupt_handler

... bunch more unreleated code here

.text
.align 4
_interrupt_handler:

portSAVE_CONTEXT

/* Stack the return address. */
swi r14, r1, portR14_OFFSET

/* Switch to the ISR stack. */
lwi r1, r0, pulISRStack

/* The parameter to the interrupt handler. */
ori r5, r0, configINTERRUPT_CONTROLLER_TO_USE

/* Execute any pending interrupts. */
bralid r15, XIntc_DeviceInterruptHandler
or r0, r0, r0

/* See if a new task should be selected to execute. */
lwi r18, r0, ulTaskSwitchRequested
or r18, r18, r0

/* If ulTaskSwitchRequested is already zero, then jump straight to
restoring the task that is already in the Running state. */
beqi r18, task_switch_not_requested

/* Set ulTaskSwitchRequested back to zero as a task switch is about to be
performed. */
swi r0, r0, ulTaskSwitchRequested

/* ulTaskSwitchRequested was not 0 when tested. Select the next task to
execute. */
bralid r15, vTaskSwitchContext
or r0, r0, r0

... bunch more code here

我不清楚如何解决这个问题,有没有其他人遇到过这个问题。

非常感谢任何帮助。提前致谢。

最佳答案

以下是有关使用 FreeRTOS 实现 Microblaze ISR 的一些信息:http://www.freertos.org/RTOS-Xilinx-Microblaze-KC705.html#implementing_an_ISR

关于c - 使用 freeRTOS 的 Microblaze 中断示例给出了 _interrupt_handler 的多个定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39910632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com