首頁 > 評測 > [LKS32MC037E開發(fā)板評測]+ 點燈

[LKS32MC037E開發(fā)板評測]+ 點燈

  
  • 作者:
  • 來源:
  • [導讀]
  • 很高興能參加評測,由于最近比較忙,只能先點燈玩玩。 頭一次解除電機驅(qū)動的軟硬件,也是頭一次接觸RISC內(nèi)核的單片機。 d3f7805ab2ba544f2c4ced96f4e3bc6.jpg (134.2 KB )下載附件2023-3-1 20:37 上傳 #include "
很高興能參加評測,由于最近比較忙,只能先點燈玩玩。
頭一次解除電機驅(qū)動的軟硬件,也是頭一次接觸RISC內(nèi)核的單片機。

#include "lks32mc03x.h"
#include "lks32mc03x_lib.h"
#include "lks32mc03x_sys.h"
//#include "basic.h"

void SoftDelay(u32 cnt);

int main(void)
{
                GPIO_InitTypeDef GPIO_InitStruct;
    GPIO_StructInit(&GPIO_InitStruct);
       
                 /* MCPWM P1.4 */
    GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
    GPIO_InitStruct.GPIO_Pin = GPIO_Pin_4;
    GPIO_Init(GPIO1, &GPIO_InitStruct);
               
          while(1)
                {
                        SoftDelay(1000000);
                        GPIO_SetBits(GPIO1, GPIO_Pin_4);
                        SoftDelay(1000000);
      GPIO_ResetBits (GPIO1, GPIO_Pin_4);
                }
          
}

/*******************************************************************************
函數(shù)名稱:    void SystemInit(void)
功能描述:    硬件系統(tǒng)初始化,調(diào)用時鐘初始化函數(shù)
輸入?yún)?shù):    無
輸出參數(shù):    無
返 回 值:    無
其它說明:
修改日期      版本號          修改人            修改內(nèi)容
-----------------------------------------------------------------------------
2016/3/14      V1.0           Howlet Li          創(chuàng)建
*******************************************************************************/
void SystemInit(void)
{
    SYS_WR_PROTECT = 0x7a83;   /* 解除系統(tǒng)寄存器寫保護 */
    SYS_VolSelModule(1);       /* 0: 3.3V ; 1: 5.0V*/
    SYS_AFE_REG0 |= BIT15;     /* BIT15:PLLPDN */
    //SoftDelay(100);            /* 延時100us, 等待PLL穩(wěn)定 21.4.17*/
    SYS_CLK_CFG |= 0x000001ff; /* BIT8:0: CLK_HS,1:PLL  | BIT[7:0]CLK_DIV  | 1ff對應(yīng)48M時鐘 */
}

static void SoftDelay(u32 cnt)
{
    volatile u32 t_cnt;
    for (t_cnt = 0; t_cnt < cnt; t_cnt++)
    {
        __nop();
    }
}
總體來說,LKS32MC037E單片機,上手還是非常簡單。其內(nèi)部其他資源,過后會進一步學習。

  • 本文系21ic原創(chuàng),未經(jīng)許可禁止轉(zhuǎn)載!

網(wǎng)友評論