Hi,
I want to know on what cpu clock frequency ble stack runs 32M or 16M?
Long back one of TI employee had told me that it runs on 32M but i can't find definition for cpu running on 32M
Following are some of parameters defined in hal_mcu.h
/* CLKCONCMD bit definitions */
#define OSC BV(6)
#define TICKSPD(x) (x << 3)
#define CLKSPD(x) (x << 0)
#define CLKCONCMD_32MHZ (0)
#define CLKCONCMD_16MHZ (CLKSPD(1) | TICKSPD(1) | OSC)
There is no definition for clock setting for 32M as marked above. I am working on voice recording and playing using timer3 PWM . If i do not use stack and play message using 32M cpu clock then message is played as usual but using stack its playing twice faster. if i try to define the above definition for 32M then ble device doesn't advertise at all.
can anyone please suggest me for above doubt?
thanks