ソースを参照

Merge pull request #112 from duff2013/master

Get enabled NVIC ISR's
main
Paul Stoffregen 8年前
コミット
bf3e5b2e69
1個のファイルの変更1行の追加0行の削除
  1. +1
    -0
      teensy3/kinetis.h

+ 1
- 0
teensy3/kinetis.h ファイルの表示

@@ -4678,6 +4678,7 @@ typedef struct __attribute__((packed)) {
#define NVIC_DISABLE_IRQ(n) (*((volatile uint32_t *)0xE000E180 + ((n) >> 5)) = (1 << ((n) & 31)))
#define NVIC_SET_PENDING(n) (*((volatile uint32_t *)0xE000E200 + ((n) >> 5)) = (1 << ((n) & 31)))
#define NVIC_CLEAR_PENDING(n) (*((volatile uint32_t *)0xE000E280 + ((n) >> 5)) = (1 << ((n) & 31)))
#define NVIC_IS_ENABLED(n) (*((volatile uint32_t *)0xE000E100 + ((n) >> 5)) & (1 << ((n) & 31)))
#define NVIC_IS_PENDING(n) (*((volatile uint32_t *)0xE000E200 + ((n) >> 5)) & (1 << ((n) & 31)))
#define NVIC_IS_ACTIVE(n) (*((volatile uint32_t *)0xE000E300 + ((n) >> 5)) & (1 << ((n) & 31)))
#ifdef KINETISK

読み込み中…
キャンセル
保存