File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/stack/sources
targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52 Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 28
28
#include "crys_dh.h"
29
29
#include "ssi_pal_types.h"
30
30
#include "ssi_aes.h"
31
+ #include "sns_silib.h"
31
32
#include "crys_aesccm.h"
32
33
#endif
33
34
@@ -780,7 +781,7 @@ void PalCryptoInit(void)
780
781
{
781
782
NVIC_EnableIRQ (CRYPTOCELL_IRQn );
782
783
NRF_CRYPTOCELL -> ENABLE = 1 ;
783
- SaSi_LibInit ();
784
+ SaSi_LibInit (NULL , NULL );
784
785
}
785
786
786
787
/*************************************************************************************************/
@@ -793,7 +794,7 @@ void PalCryptoInit(void)
793
794
void PalCryptoDeInit (void )
794
795
{
795
796
NRF_CRYPTOCELL -> ENABLE = 1 ;
796
- SaSi_LibFini ();
797
+ SaSi_LibFini (NULL );
797
798
NRF_CRYPTOCELL -> ENABLE = 0 ;
798
799
}
799
800
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ extern bool m_common_rtc_enabled;
45
45
extern uint32_t volatile m_common_rtc_overflows ;
46
46
extern bool volatile lp_ticker_interrupt_fire ;
47
47
48
+ void common_rtc_free (void );
48
49
void common_rtc_init (void );
49
50
uint32_t common_rtc_32bit_ticks_get (void );
50
51
uint64_t common_rtc_64bit_us_get (void );
You can’t perform that action at this time.
0 commit comments