程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> typedef struct-MDK的結構體問題struct

typedef struct-MDK的結構體問題struct

編輯:編程綜合問答
MDK的結構體問題struct

typedef struct {
uint8_t lowsel;
uint8_t highsel;
} hl;
hl HighLowSel[16] = {{0x07,0x00},{0x06,0x00},{0x05,0x00},{0x04,0x00},
{0x03,0x00},{0x02,0x00},{0x01,0x00},{0x00,0x00},
{0x07,0x01},{0x06,0x01},{0x05,0x01},{0x04,0x01},
{0x03,0x01},{0x02,0x01},{0x01,0x01},{0x00,0x01}};
編譯提示出錯

.\Obj\Project.axf: Error: L6200E: Symbol HighLowSel multiply defined (by board.o and main.o).
請教,如何修改

最佳回答:


HighLowSel 重復定義了,看看 board and main 兩個模塊吧

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved