Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 326 Bytes

issue.md

File metadata and controls

24 lines (15 loc) · 326 Bytes

issue

烧录失败

  • 型号选择错误

    应该是STC89Cxx(new) 而不是STC89Cxx

  • 线不对

    有充电线和数据线之分

代码错误

#define copyVectorTo(index)   set(P0, ~index)
copyVectorTo(1 << i);

宏展开后, 优先级不对

#define copyVectorTo(index)   set(P0, ~(index))