仿真錯誤*** error 65是什麽意思?

2019-03-24 16:23发布

仿真的時候,出現*** error 65: access violation at 0x400FE108 : no 'read' permission錯誤是怎么回事?
編譯沒有錯誤!
謝謝 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
14条回答
tieyi0404
2019-03-25 08:35
#include "SystemInit.h"

#define LED_PERIPH  SYSCTL_PERIPH_GPIOG
#define LED_PROT    GPIO_PORTG_BASE
#define LED_PINS    GPIO_PIN_2|GPIO_PIN_5

int main(void)
{
    unsigned char vcVal;
    jtagWait();
    clockInit();
   
    SysCtlPeripheralEnable(LED_PERIPH);
    GPIOPinTypeOut(LED_PROT,LED_PINS);
   
    vcVal = (0 << 2)|(1 << 5);
    for(;;)
    {
        GPIOPinWrite(LED_PROT,LED_PINS,vcVal);
        vcVal ^= (0 << 2)|(1 << 5);
        SysCtlDelay(150*(TheSysClock/3000));//┑??150ms
    }
}

一周热门 更多>

相关问题

    相关文章