باسلام
من در ماژول mc60 کد زیر را نوشتم و میخواهم که چراغ led1 را روشن کنم.اما فقط چراغ netlight روشن میشه و چشمک میزنه.مشکل کار من از کجاست؟
اگر کسی میدونه راهنمایی کنه.
define CUSTOMER_CODE
#ifdef CUSTOMER_CODE
#include “ql_system.h”
#include “ql_gpio.h”
void proc_main_task(s32 taskId)
{
// Specify a GPIO pin
//Enum_PinName gpioPin = PINNAME_NETLIGHT;
Enum_PinName LED_1 = PINNAME_RI;
// Initialize the GPIO pin (output high level, pull up)
Ql_GPIO_Init(LED_1, PINDIRECTION_OUT, PINLEVEL_HIGH, PINPULLSEL_PULLUP);
while (TRUE)
{
// Set the GPIO level to low after 500ms.
Ql_Sleep(2000);
Ql_GPIO_SetLevel(LED_1, PINLEVEL_LOW);
// Set the GPIO level to high after 500ms.
Ql_Sleep(2000);
Ql_GPIO_SetLevel(LED_1, PINLEVEL_HIGH);
}
}
#endif