Hi all:
In a project.it need Power on ,P06 LOW delay 10 secnod to High ,
I write code :
in
set_pad_functions
GPIO_ConfigurePin( GPIO_PORT_0, GPIO_PIN_6, OUTPUT, PID_GPIO, false );
at while(1) In main_func ,
I add this
if(button_count<4){
button_count++;
if(4==button_count)
GPIO_SetActive( GPIO_PORT_0, GPIO_PIN_6 );
}
4 is Advertising times;
sleep mode is
/*Sleep modes*/
define CFG_EXT_SLEEP
#undef CFG_DEEP_SLEEP
P06 pin is not connect anything,but ,the P06 high is not output,Why?
I am a fresh,Can you help me?