• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

src/03-Apr-2024-258141

CMakeLists.txtD03-Apr-2024312 127

KconfigD03-Apr-2024163 85

README.txtD03-Apr-20241.2 KiB4127

irq-vector-table.ldD03-Apr-2024329 118

prj.confD03-Apr-2024152 64

testcase.yamlD03-Apr-2024315 1413

README.txt

1Title: Installation of ISRs Directly in the Vector Table (ARM Only)
2
3Description:
4
5Verify a project can install ISRs directly in the vector table. Only for
6ARM Cortex-M targets.
7
8---------------------------------------------------------------------------
9
10Building and Running Project:
11
12This project outputs to the console.  It can be built and executed on QEMU as
13follows:
14
15    make run
16
17---------------------------------------------------------------------------
18
19Troubleshooting:
20
21Problems caused by out-dated project information can be addressed by
22issuing one of the following commands then rebuilding the project:
23
24    make clean          # discard results of previous builds
25                        # but keep existing configuration info
26or
27    make pristine       # discard results of previous builds
28                        # and restore pre-defined configuration info
29
30---------------------------------------------------------------------------
31
32Sample Output:
33
34tc_start() - Test Cortex-M3 IRQ installed directly in vector table
35isr0 ran!
36isr1 ran!
37isr2 ran!
38PASS - main.
39===================================================================
40PROJECT EXECUTION SUCCESSFUL
41