首頁(yè) > 評(píng)測(cè) > [LKS32MC037E開(kāi)發(fā)板評(píng)測(cè)]+ 點(diǎn)燈
[LKS32MC037E開(kāi)發(fā)板評(píng)測(cè)]+ 點(diǎn)燈
- [導(dǎo)讀]
- 很高興能參加評(píng)測(cè),由于最近比較忙,只能先點(diǎn)燈玩玩。 頭一次解除電機(jī)驅(qū)動(dòng)的軟硬件,也是頭一次接觸RISC內(nèi)核的單片機(jī)。 d3f7805ab2ba544f2c4ced96f4e3bc6.jpg (134.2 KB )下載附件2023-3-1 20:37 上傳 #include "
很高興能參加評(píng)測(cè),由于最近比較忙,只能先點(diǎn)燈玩玩。
頭一次解除電機(jī)驅(qū)動(dòng)的軟硬件,也是頭一次接觸RISC內(nèi)核的單片機(jī)。
#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ù)名稱(chēng): void SystemInit(void)
功能描述: 硬件系統(tǒng)初始化,調(diào)用時(shí)鐘初始化函數(shù)
輸入?yún)?shù): 無(wú)
輸出參數(shù): 無(wú)
返 回 值: 無(wú)
其它說(shuō)明:
修改日期 版本號(hào) 修改人 修改內(nèi)容
-----------------------------------------------------------------------------
2016/3/14 V1.0 Howlet Li 創(chuàng)建
*******************************************************************************/
void SystemInit(void)
{
SYS_WR_PROTECT = 0x7a83; /* 解除系統(tǒng)寄存器寫(xiě)保護(hù) */
SYS_VolSelModule(1); /* 0: 3.3V ; 1: 5.0V*/
SYS_AFE_REG0 |= BIT15; /* BIT15:PLLPDN */
//SoftDelay(100); /* 延時(shí)100us, 等待PLL穩(wěn)定 21.4.17*/
SYS_CLK_CFG |= 0x000001ff; /* BIT8:0: CLK_HS,1:PLL | BIT[7:0]CLK_DIV | 1ff對(duì)應(yīng)48M時(shí)鐘 */
}
static void SoftDelay(u32 cnt)
{
volatile u32 t_cnt;
for (t_cnt = 0; t_cnt < cnt; t_cnt++)
{
__nop();
}
}
總體來(lái)說(shuō),LKS32MC037E單片機(jī),上手還是非常簡(jiǎn)單。其內(nèi)部其他資源,過(guò)后會(huì)進(jìn)一步學(xué)習(xí)。
頭一次解除電機(jī)驅(qū)動(dòng)的軟硬件,也是頭一次接觸RISC內(nèi)核的單片機(jī)。
#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ù)名稱(chēng): void SystemInit(void)
功能描述: 硬件系統(tǒng)初始化,調(diào)用時(shí)鐘初始化函數(shù)
輸入?yún)?shù): 無(wú)
輸出參數(shù): 無(wú)
返 回 值: 無(wú)
其它說(shuō)明:
修改日期 版本號(hào) 修改人 修改內(nèi)容
-----------------------------------------------------------------------------
2016/3/14 V1.0 Howlet Li 創(chuàng)建
*******************************************************************************/
void SystemInit(void)
{
SYS_WR_PROTECT = 0x7a83; /* 解除系統(tǒng)寄存器寫(xiě)保護(hù) */
SYS_VolSelModule(1); /* 0: 3.3V ; 1: 5.0V*/
SYS_AFE_REG0 |= BIT15; /* BIT15:PLLPDN */
//SoftDelay(100); /* 延時(shí)100us, 等待PLL穩(wěn)定 21.4.17*/
SYS_CLK_CFG |= 0x000001ff; /* BIT8:0: CLK_HS,1:PLL | BIT[7:0]CLK_DIV | 1ff對(duì)應(yīng)48M時(shí)鐘 */
}
static void SoftDelay(u32 cnt)
{
volatile u32 t_cnt;
for (t_cnt = 0; t_cnt < cnt; t_cnt++)
{
__nop();
}
}
總體來(lái)說(shuō),LKS32MC037E單片機(jī),上手還是非常簡(jiǎn)單。其內(nèi)部其他資源,過(guò)后會(huì)進(jìn)一步學(xué)習(xí)。
- 本文系21ic原創(chuàng),未經(jīng)許可禁止轉(zhuǎn)載!
網(wǎng)友評(píng)論
- 聯(lián)系人:巧克力娃娃
- 郵箱:board@21ic.com
- 我要投稿
-
歡迎入駐,開(kāi)放投稿
行業(yè)新聞
熱門(mén)標(biāo)簽
論壇活動(dòng)
more+
公開(kāi)課
more+
項(xiàng)目外包
more+
- NRF52810藍(lán)牙數(shù)字耳機(jī)找人定制
預(yù)算:¥30005天前
- 125KW模塊式PCS軟硬件外包開(kāi)發(fā)
預(yù)算:¥1100000015小時(shí)前
- 12V汽車(chē)啟動(dòng)電源項(xiàng)目BMS設(shè)計(jì)
預(yù)算:¥50000023小時(shí)前
- 數(shù)據(jù)可視化軟件 開(kāi)發(fā)
預(yù)算:¥5000023小時(shí)前
- PLC項(xiàng)目調(diào)試修改
預(yù)算:¥100001天前
- 起動(dòng)電機(jī)控制器開(kāi)發(fā)
預(yù)算:¥1100001天前