memory map
The memory map of the Cortex-M3 has some features that are slightly different from the memory map of a typical …
The memory map of the Cortex-M3 has some features that are slightly different from the memory map of a typical …
The vector table in Cortex-M3 starts at number 0.In a typical microcontroller, the minimum address part (0) of the vector …
Cortex-M3のベクタテーブルは0番地から始まります。一般的なマイコンは、ベクタテーブルの最小アドレス部(0番地)にはリセットベクタが割り当てられていますが、Cortex-M3ではメインスタック(SP_main)の初期値が割り当てられています。
NVIC(統合ネスト型ベクタ割り込みコントローラ)が持っている制御用レジスタを説明します。SysTick関係のレジスタもNVICレジスタに含まれますが、それらはSysTickの章で詳しく説明します。
This section describes the control registers that the NVIC (Nested Vectored Interrupt Controller) has.SysTick-related registers are also included in NVIC …
In Cortex-M3, the priority of each interrupt can be changed by the user.It can also be set to 256 levels …
Cortex-M3では、各割り込みの優先順位をユーザーが変更することができます。それも8段階や16段階ではなく256段階で設定することが可能です。設定には、割り込み優先度レジスタを使います。
If you read the Cortex-M3 manual, you'll see the words tail-chain, sidestep, and rear-end.This word indicates the timing of exception …
Cortex-M3のマニュアルを読みますと、テールチェイン、横取り、後着という言葉が出てきます。例外処理優先順位によって発生する例外処理のタイミングを現す言葉です。各々の意味を簡単に説明すると以下のようになります。