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.

编译出问题

Other Parts Discussed in Thread: MSP430G2553

#include "msp430G2553.h"
#include "Blink_LED.h"
#include "Blink_LED.C"

   void main();
   {
    WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
    P1DIR=BIT6;
    while(1);
    {

    Blink_LED();
     }
   }

   void Blink_LED();
    {
    _delay_cycles(100000);
    P1OUT^=BIT6;

    }

请问一下老师以上这部分代码没问题怎么编译出错呀,刚学入门,这么难搞