私は Embedded C に取り組んでいます。私はポインター構造で立ち往生しています....
構造を以下に示します。
/*structure 1*/
ZPS_tsAplApsmeBindingTableType *psAplApsmeAibBindingTable;
/*structure 2*/
typedef struct
{
ZPS_tsAplApsmeBindingTableCache* psAplApsmeBindingTableCache;
ZPS_tsAplApsmeBindingTable* psAplApsmeBindingTable;
}ZPS_tsAplApsmeBindingTableType;
/*structure3*/
typedef struct
{
uint64 u64SourceAddress;
ZPS_tsAplApsmeBindingTableEntry* pvAplApsmeBindingTableEntryForSpSrcAddr;
uint32 u32SizeOfBindingTable;
}ZPS_tsAplApsmeBindingTable;
/*structure 4*/
typedef struct
{
ZPS_tuAddress uDstAddress;
uint16 u16ClusterId;
uint8 u8DstAddrMode;
uint8 u8SourceEndpoint;
uint8 u8DestinationEndPoint;
} ZPS_tsAplApsmeBindingTableEntry;
宣言しましたが、構造体の値ZPS_tsAplApsmeBindingTableType *p;
にアクセスしたいのですがZPS_tsAplApsmeBindingTableEntry
...どうすればできますか??
誰でも違いを教えてもらえますか
ZPS_tsAplApsmeBindingTable* psAplApsmeBindingTable
と
ZPS_tsAplApsmeBindingTable *psAplApsmeBindingTable;
ありがとう ....