void main(void) {
/* put your own code here */
UINT8 p,k=0;
p = 1;
vfnClock_Settings();
vfnCAN_Init();
EnableInterrupts;
for(;;) {
p = u8CAN_SendFrame(0xD8E00000,0x00,8 , u8TxBuffer);
DelayMS(4);//400毫秒
k = k ^ 1;
if(p == 0) p = 1;
_FEED_COP(); /* feeds the dog */
} /* loop forever */
/* please make sure that you never leave main */
}