Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
3e011a9
update host and wsf files
paul-szczepanek-arm Jun 5, 2020
fc59443
hciDrvWrite no longer needed
paul-szczepanek-arm Jun 5, 2020
bb4b58b
porting adaptation layer
paul-szczepanek-arm Jun 8, 2020
764f18c
add crit section to cordio stack pal
paul-szczepanek-arm Jun 8, 2020
313651b
remove nvm
paul-szczepanek-arm Jun 8, 2020
59528d6
expose WsfTimerNextExpiration in the wsf api
paul-szczepanek-arm Jun 8, 2020
4090f31
add missing services header
paul-szczepanek-arm Jun 8, 2020
758b958
missing wsf_types.h include
paul-szczepanek-arm Jun 8, 2020
11dba2e
don't compile debug version of ecc by deafult
paul-szczepanek-arm Jun 8, 2020
260e501
fix cordio configuration
paul-szczepanek-arm Jun 8, 2020
c61f84b
remove pointless heap count
paul-szczepanek-arm Jun 8, 2020
c4afea2
remember if key was authenticated
paul-szczepanek-arm Jun 8, 2020
d3bda92
fix signed writes
paul-szczepanek-arm Jun 8, 2020
ebf9ec9
copy advertising data into the message
paul-szczepanek-arm Jun 9, 2020
a40d0cb
fix error message
paul-szczepanek-arm Jun 9, 2020
c2bc9a4
avoid redundant call on timer init
paul-szczepanek-arm Jun 9, 2020
be80c46
update cordio LL files to 20.05r
paul-szczepanek-arm Jun 10, 2020
fbf55f9
change fake chci into custom chci to resolve naming issues
paul-szczepanek-arm Jun 10, 2020
c2ccc30
enable custom hci transport in config
paul-szczepanek-arm Jun 10, 2020
4ce36b3
missing def arm id in ll_defs
paul-szczepanek-arm Jun 10, 2020
568d0a2
use assembly on gcc
paul-szczepanek-arm Jun 10, 2020
7f23b6d
update nrf cordio ll files
paul-szczepanek-arm Jun 10, 2020
a04102a
switch to timer 2 due to conflict
paul-szczepanek-arm Jun 10, 2020
d9699cf
asm only for gcc
paul-szczepanek-arm Jun 10, 2020
ebd4aed
disable led
paul-szczepanek-arm Jun 10, 2020
dbd58bf
remove unneeded pal
paul-szczepanek-arm Jun 12, 2020
3a46d09
add stubs for iso channels, update config for iso
paul-szczepanek-arm Jun 12, 2020
16cbc97
enum for acl changed name from data to acl to match stack
paul-szczepanek-arm Jun 12, 2020
981eaed
crypto init calls fixed
paul-szczepanek-arm Jun 12, 2020
3316e7f
shutdown timer on deinit
paul-szczepanek-arm Jun 12, 2020
666f2f4
trigger complete callbacks after sending HCI message
paul-szczepanek-arm Jun 12, 2020
bc44299
added timerboundary to config
paul-szczepanek-arm Jun 15, 2020
3de3754
switch to 5.1 api
paul-szczepanek-arm Jun 15, 2020
9354bc2
memory footprint increased
paul-szczepanek-arm Jun 15, 2020
2ffc61a
added timer IRQ handler for TIMER2
paul-szczepanek-arm Jun 19, 2020
f2a6e8b
update comment
paul-szczepanek-arm Jun 22, 2020
c3a39e9
stray tabs removed
paul-szczepanek-arm Jun 22, 2020
3e6e671
make public and random static based on different nrf configs
paul-szczepanek-arm Jul 3, 2020
bd9e819
Merge pull request #13228 from paul-szczepanek-arm/patch-2
0xc0170 Jul 6, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added timer IRQ handler for TIMER2
  • Loading branch information
paul-szczepanek-arm authored and pan- committed Jul 2, 2020
commit 2ffc61aacbd68897e8ab6f80db76a8a819f835ef
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,8 @@ ble::vendor::cordio::buf_pool_desc_t NRFCordioHCIDriver::get_buffer_pool_descrip
return buf_pool_desc_t(buffer, pool_desc);
}

extern "C" void TIMER2_IRQHandler();

void NRFCordioHCIDriver::do_initialize()
{
if(_is_init) {
Expand Down Expand Up @@ -298,6 +300,7 @@ void NRFCordioHCIDriver::do_initialize()

// For some reason, the mbed target uses this (TIMER0_IRQHandler_v) vector name instead of the "standard" TIMER0_IRQHandler one
NVIC_SetVector(TIMER0_IRQn, (uint32_t)TIMER0_IRQHandler);
NVIC_SetVector(TIMER2_IRQn, (uint32_t)TIMER2_IRQHandler);

// Extremely ugly
for(uint32_t irqn = 0; irqn < 32; irqn++)
Expand Down