diff options
author | Keith Packard <keithp@keithp.com> | 2011-05-11 08:16:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-05-11 08:16:29 -0700 |
commit | fef945e36c2397dd39b68995ed8d2ab81a4d24cd (patch) | |
tree | 32260e89ee5bb0f77d56acb5c6b558b55154636f /src/ao.h | |
parent | 4c6fddf6f6ea7247291272af39966ab94260fb01 (diff) | |
parent | 479bdffa35d0b8d4e48868c8d20f3cb1549521ab (diff) |
Merge branch 'telebt' into telescience
Diffstat (limited to 'src/ao.h')
-rw-r--r-- | src/ao.h | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -1367,9 +1367,17 @@ ao_packet_slave_init(uint8_t enable); /* ao_btm.c */ -/* Shared by USB, so the USB code calls this function */ +/* If bt_link is on P2, this interrupt is shared by USB, so the USB + * code calls this function. Otherwise, it's a regular ISR. + */ + void -ao_btm_isr(void); +ao_btm_isr(void) +#if BT_LINK_ON_P1 + __interrupt 15 +#endif + ; + void ao_btm_init(void); |