Unusual 'expected error' for HC08!

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Unusual 'expected error' for HC08!

1,464件の閲覧回数
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

ラベル(1)
タグ(1)
0 件の賞賛
返信
1 返信

761件の閲覧回数
CrasyCat
Specialist III
Hello
 
would need the whole definition of type tTxPacket to investigate.
 
CrasyCat