This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

F20835 control card , LD1&LD3 灯号是代表什么意思呢?



各位好

 

我目前使用HV SOLAR DCDC

 

当我在CCS当中debug后,按下RUN,开始执行CODE

 

此时我看到F28035 control card 的LD3会闪烁红灯,大约每一秒闪烁一次,而LD1则是一直是绿灯。

 

请问这样子的灯号是代表什么意思呢?

 

感谢各位

  • neil,

    LD1表示controlCARD 3.3V的上电状态。

    LD3应该没有特殊函数,表示程序正在运行而已。

    Eric 

  • Hi,Eric

     

    我看了controlCARD 的基本说明,提到LD3是由GPIO34控制

     

    然后我去找我的程序,发现在background 程序里有提到 :

     

    void B2(void) // Blink LED on the control CArd

    //----------------------------------------

    {    if(LedBlinkCnt==0)

             {

                  GpioDataRegs.GPBTOGGLE.bit.GPIO34 = 1;   //turn on/off LD3 on the controlCARD

                  LedBlinkCnt=5;

             }

         else

                  LedBlinkCnt--;

        

         //-----------------

         //the next time CpuTimer1 'counter' reaches Period value go to B1

         B_Task_Ptr = &B1;

         //-----------------

    }

     

    所以我想LD3正是如您所说的,表示程序在运行而已。

     

    感谢您的回答

     

    neil

  • neil,你好。

    我的现象和您的一样。我做的是硬件仿真。但是之后就连接不上板子了,请问您有这个现象吗?