Unusual 'expected error' for HC08!

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Unusual 'expected error' for HC08!

1,072 Views
coolgoose
Contributor I
Hello,

I'm trying to build an application around HCS08 MCU and MC13213 transceiver using CW IDE version 5.7.
The following code is from the application source code file:

extern tTxPacket gsTxPacket;
extern tRxPacket gsRxPacket;


/* Initialize the packet.*/
gsTxPacket.u8DataLength = 0; -----------------------> Error occurs here
gsTxPacket.pu8Data = &gau8TxDataBuffer[0];
gsTxPacket.u8MaxDataLength = 128;
gsRxPacket.u8DataLength = 0;

I'm getting an error as follows:
[Error : c2450: Expected: ;]---->for the indicated line

thanks in advance

Message Edited by J2MEJediMaster on 2007-04-12 10:58 AM

Labels (1)
Tags (1)
0 Kudos
1 Reply

369 Views
CrasyCat
Specialist III
Hello
 
would need the whole definition of type tTxPacket to investigate.
 
CrasyCat