Guest User

dotklok_error

a guest
Jun 3rd, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.00 KB | None | 0 0
  1. Arduino: 1.6.12 (Windows 10), Board: "Arduino/Genuino Uno"
  2.  
  3. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:25:1: warning: "/*" within comment [-Wcomment]
  4.  
  5. /********************************************************************************/
  6.  
  7. ^
  8.  
  9. In file included from C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:43:0:
  10.  
  11. fonts.h:1: error: variable 'font_3x5' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
  12.  
  13. unsigned char PROGMEM font_3x5[11][3] = {
  14.  
  15. ^
  16.  
  17. fonts.h:15: error: variable 'font_4x7' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
  18.  
  19. unsigned char PROGMEM font_4x7[11][4] = {
  20.  
  21. ^
  22.  
  23. fonts.h:46: error: 'prog_uint16_t' does not name a type
  24.  
  25. const prog_uint16_t PROGMEM font_5x12[11][5] = {
  26.  
  27. ^
  28.  
  29. fonts.h:61: error: 'prog_uint8_t' does not name a type
  30.  
  31. const prog_uint8_t PROGMEM sprite_00[8] =
  32.  
  33. ^
  34.  
  35. fonts.h:73: error: 'prog_uint8_t' does not name a type
  36.  
  37. const prog_uint8_t PROGMEM sprite_01[8] =
  38.  
  39. ^
  40.  
  41. fonts.h:85: error: 'prog_uint8_t' does not name a type
  42.  
  43. const prog_uint8_t PROGMEM sprite_02[8] =
  44.  
  45. ^
  46.  
  47. fonts.h:97: error: 'prog_uint8_t' does not name a type
  48.  
  49. const prog_uint8_t PROGMEM sprite_03[8] =
  50.  
  51. ^
  52.  
  53. fonts.h:110: error: variable 'tetris_8x8' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
  54.  
  55. unsigned char PROGMEM tetris_8x8[8][8] = {
  56.  
  57. ^
  58.  
  59. fonts.h:122: error: 'prog_uint16_t' does not name a type
  60.  
  61. const prog_uint16_t PROGMEM pacman_12x12[3][12] = {
  62.  
  63. ^
  64.  
  65. dotklok_rev_1_3:66: error: 'PULLUP' was not declared in this scope
  66.  
  67. Button b1 = Button(6,PULLUP);
  68.  
  69. ^
  70.  
  71. dotklok_rev_1_3:67: error: 'PULLUP' was not declared in this scope
  72.  
  73. Button b2 = Button(5,PULLUP);
  74.  
  75. ^
  76.  
  77. dotklok_rev_1_3:68: error: 'PULLUP' was not declared in this scope
  78.  
  79. Button b3 = Button(8,PULLUP);
  80.  
  81. ^
  82.  
  83. dotklok_rev_1_3:69: error: 'PULLUP' was not declared in this scope
  84.  
  85. Button b4 = Button(7,PULLUP);
  86.  
  87. ^
  88.  
  89. dotklok_rev_1_3:70: error: 'PULLUP' was not declared in this scope
  90.  
  91. Button b5 = Button(4,PULLUP);
  92.  
  93. ^
  94.  
  95. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void clear_column(byte)':
  96.  
  97. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:168:9: warning: comparison is always false due to limited range of data type [-Wtype-limits]
  98.  
  99. if(col<0 || col>X_MAX) return;
  100.  
  101. ^
  102.  
  103. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void clear_row(byte)':
  104.  
  105. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:179:9: warning: comparison is always false due to limited range of data type [-Wtype-limits]
  106.  
  107. if(row<0 || row>Y_MAX) return;
  108.  
  109. ^
  110.  
  111. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'boolean change_animation()':
  112.  
  113. dotklok_rev_1_3:254: error: 'class Button' has no member named 'isPressed'
  114.  
  115. if(!b1.isPressed() && !b2.isPressed() && b3.uniquePress() && animation>1){
  116.  
  117. ^
  118.  
  119. dotklok_rev_1_3:254: error: 'class Button' has no member named 'isPressed'
  120.  
  121. if(!b1.isPressed() && !b2.isPressed() && b3.uniquePress() && animation>1){
  122.  
  123. ^
  124.  
  125. dotklok_rev_1_3:254: error: 'class Button' has no member named 'uniquePress'
  126.  
  127. if(!b1.isPressed() && !b2.isPressed() && b3.uniquePress() && animation>1){
  128.  
  129. ^
  130.  
  131. dotklok_rev_1_3:260: error: 'class Button' has no member named 'isPressed'
  132.  
  133. if(!b1.isPressed() && !b2.isPressed() && b4.uniquePress() && animation<ani_max){
  134.  
  135. ^
  136.  
  137. dotklok_rev_1_3:260: error: 'class Button' has no member named 'isPressed'
  138.  
  139. if(!b1.isPressed() && !b2.isPressed() && b4.uniquePress() && animation<ani_max){
  140.  
  141. ^
  142.  
  143. dotklok_rev_1_3:260: error: 'class Button' has no member named 'uniquePress'
  144.  
  145. if(!b1.isPressed() && !b2.isPressed() && b4.uniquePress() && animation<ani_max){
  146.  
  147. ^
  148.  
  149. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'boolean midnight_random()':
  150.  
  151. dotklok_rev_1_3:277: error: 'class Button' has no member named 'isPressed'
  152.  
  153. if( b5.isPressed() ){
  154.  
  155. ^
  156.  
  157. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void bufchar_4x7(byte, byte, char)':
  158.  
  159. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:364:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  160.  
  161. if (c >= 'A' && c <= 'Z' ||
  162.  
  163. ^
  164.  
  165. In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
  166.  
  167. from sketch\dotklok_rev_1_3.pde.cpp:1:
  168.  
  169. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:376:42: warning: array subscript has type 'char' [-Wchar-subscripts]
  170.  
  171. dots = pgm_read_byte_near(&font_4x7[c][col]);
  172.  
  173. ^
  174.  
  175. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:376:47: warning: array subscript has type 'char' [-Wchar-subscripts]
  176.  
  177. dots = pgm_read_byte_near(&font_4x7[c][col]);
  178.  
  179. ^
  180.  
  181. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void put_sprite(int, int, const uint8_t*)':
  182.  
  183. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:451:42: warning: array subscript has type 'char' [-Wchar-subscripts]
  184.  
  185. dots = pgm_read_byte_near(&sprite[col]);
  186.  
  187. ^
  188.  
  189. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void del_sprite(int, int, const uint8_t*)':
  190.  
  191. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:469:42: warning: array subscript has type 'char' [-Wchar-subscripts]
  192.  
  193. dots = pgm_read_byte_near(&sprite[col]);
  194.  
  195. ^
  196.  
  197. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void invader()':
  198.  
  199. dotklok_rev_1_3:524: error: 'sprite_00' was not declared in this scope
  200.  
  201. put_sprite(x,y, sprite_00);
  202.  
  203. ^
  204.  
  205. dotklok_rev_1_3:525: error: 'class Button' has no member named 'isPressed'
  206.  
  207. while( PAUSE && b5.isPressed( )); // pause mode for photos
  208.  
  209. ^
  210.  
  211. dotklok_rev_1_3:528: error: 'sprite_01' was not declared in this scope
  212.  
  213. put_sprite(x,y, sprite_01);
  214.  
  215. ^
  216.  
  217. dotklok_rev_1_3:529: error: 'class Button' has no member named 'isPressed'
  218.  
  219. while( PAUSE && b5.isPressed( )); // pause mode for photos
  220.  
  221. ^
  222.  
  223. dotklok_rev_1_3:534: error: 'sprite_02' was not declared in this scope
  224.  
  225. put_sprite(x,y, sprite_02);
  226.  
  227. ^
  228.  
  229. dotklok_rev_1_3:535: error: 'class Button' has no member named 'isPressed'
  230.  
  231. while( PAUSE && b5.isPressed( )); // pause mode for photos
  232.  
  233. ^
  234.  
  235. dotklok_rev_1_3:538: error: 'sprite_03' was not declared in this scope
  236.  
  237. put_sprite(x,y, sprite_03);
  238.  
  239. ^
  240.  
  241. dotklok_rev_1_3:539: error: 'class Button' has no member named 'isPressed'
  242.  
  243. while( PAUSE && b5.isPressed( )); // pause mode for photos
  244.  
  245. ^
  246.  
  247. In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
  248.  
  249. from sketch\dotklok_rev_1_3.pde.cpp:1:
  250.  
  251. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void put_tetris(byte, byte, char)':
  252.  
  253. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:572:44: warning: array subscript has type 'char' [-Wchar-subscripts]
  254.  
  255. dots = pgm_read_byte_near(&tetris_8x8[c][col]);
  256.  
  257. ^
  258.  
  259. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:572:49: warning: array subscript has type 'char' [-Wchar-subscripts]
  260.  
  261. dots = pgm_read_byte_near(&tetris_8x8[c][col]);
  262.  
  263. ^
  264.  
  265. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void del_tetris(byte, byte, char)':
  266.  
  267. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:585:44: warning: array subscript has type 'char' [-Wchar-subscripts]
  268.  
  269. dots = pgm_read_byte_near(&tetris_8x8[c][col]);
  270.  
  271. ^
  272.  
  273. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:585:49: warning: array subscript has type 'char' [-Wchar-subscripts]
  274.  
  275. dots = pgm_read_byte_near(&tetris_8x8[c][col]);
  276.  
  277. ^
  278.  
  279. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void tetris_fall(int)':
  280.  
  281. dotklok_rev_1_3:602: error: 'class Button' has no member named 'isPressed'
  282.  
  283. while( PAUSE && b5.isPressed( )); // pause mode for photos
  284.  
  285. ^
  286.  
  287. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void put_pacman(byte, byte, char)':
  288.  
  289. dotklok_rev_1_3:616: error: 'prog_uint16_t' was not declared in this scope
  290.  
  291. prog_uint16_t dots;
  292.  
  293. ^
  294.  
  295. dotklok_rev_1_3:619: error: 'dots' was not declared in this scope
  296.  
  297. dots = pgm_read_word_near(&pacman_12x12[c][col]);
  298.  
  299. ^
  300.  
  301. In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
  302.  
  303. from sketch\dotklok_rev_1_3.pde.cpp:1:
  304.  
  305. dotklok_rev_1_3:619: error: 'pacman_12x12' was not declared in this scope
  306.  
  307. dots = pgm_read_word_near(&pacman_12x12[c][col]);
  308.  
  309. ^
  310.  
  311. dotklok_rev_1_3:620: error: expected ';' before 'row'
  312.  
  313. for (prog_uint16_t row=0; row < 11; row++) {
  314.  
  315. ^
  316.  
  317. dotklok_rev_1_3:620: error: 'row' was not declared in this scope
  318.  
  319. for (prog_uint16_t row=0; row < 11; row++) {
  320.  
  321. ^
  322.  
  323. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void del_pacman(byte, byte, char)':
  324.  
  325. dotklok_rev_1_3:631: error: 'prog_uint16_t' was not declared in this scope
  326.  
  327. prog_uint16_t dots;
  328.  
  329. ^
  330.  
  331. dotklok_rev_1_3:634: error: 'dots' was not declared in this scope
  332.  
  333. dots = pgm_read_word_near(&pacman_12x12[c][col]);
  334.  
  335. ^
  336.  
  337. In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
  338.  
  339. from sketch\dotklok_rev_1_3.pde.cpp:1:
  340.  
  341. dotklok_rev_1_3:634: error: 'pacman_12x12' was not declared in this scope
  342.  
  343. dots = pgm_read_word_near(&pacman_12x12[c][col]);
  344.  
  345. ^
  346.  
  347. dotklok_rev_1_3:635: error: expected ';' before 'row'
  348.  
  349. for (prog_uint16_t row=0; row < 11; row++) {
  350.  
  351. ^
  352.  
  353. dotklok_rev_1_3:635: error: 'row' was not declared in this scope
  354.  
  355. for (prog_uint16_t row=0; row < 11; row++) {
  356.  
  357. ^
  358.  
  359. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void pacman(int)':
  360.  
  361. dotklok_rev_1_3:654: error: 'class Button' has no member named 'isPressed'
  362.  
  363. while( PAUSE && b5.isPressed( )); // pause mode for photos
  364.  
  365. ^
  366.  
  367. dotklok_rev_1_3:658: error: 'class Button' has no member named 'isPressed'
  368.  
  369. while( PAUSE && b5.isPressed( )); // pause mode for photos
  370.  
  371. ^
  372.  
  373. dotklok_rev_1_3:663: error: 'class Button' has no member named 'isPressed'
  374.  
  375. while( PAUSE && b5.isPressed( )); // pause mode for photos
  376.  
  377. ^
  378.  
  379. dotklok_rev_1_3:667: error: 'class Button' has no member named 'isPressed'
  380.  
  381. while( PAUSE && b5.isPressed( )); // pause mode for photos
  382.  
  383. ^
  384.  
  385. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void plot(char, char, char)':
  386.  
  387. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:327:49: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
  388.  
  389. else { addr = ((x%24)<<2) + (y>>2)^ 28; }
  390.  
  391. ^
  392.  
  393. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:331:29: warning: array subscript has type 'char' [-Wchar-subscripts]
  394.  
  395. ht1632_shadowram[c][addr] |= bitval;
  396.  
  397. ^
  398.  
  399. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:334:29: warning: array subscript has type 'char' [-Wchar-subscripts]
  400.  
  401. ht1632_shadowram[c][addr] &= ~bitval;
  402.  
  403. ^
  404.  
  405. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:339:58: warning: array subscript has type 'char' [-Wchar-subscripts]
  406.  
  407. ht1632_senddata(chip[c], addr, ht1632_shadowram[c][addr]);
  408.  
  409. ^
  410.  
  411. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:276:8: warning: unused variable 'chip_this' [-Wunused-variable]
  412.  
  413. byte chip_this;
  414.  
  415. ^
  416.  
  417. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void ht1632_clear()':
  418.  
  419. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:361:28: warning: array subscript has type 'char' [-Wchar-subscripts]
  420.  
  421. ht1632_shadowram[c][i] = 0;
  422.  
  423. ^
  424.  
  425. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void putchar_3x5(byte, byte, char)':
  426.  
  427. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:373:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  428.  
  429. if (c >= 'A' && c <= 'Z' ||
  430.  
  431. ^
  432.  
  433. In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
  434.  
  435. from sketch\dotklok_rev_1_3.pde.cpp:1:
  436.  
  437. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:385:42: warning: array subscript has type 'char' [-Wchar-subscripts]
  438.  
  439. dots = pgm_read_byte_near(&font_3x5[c][col]);
  440.  
  441. ^
  442.  
  443. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:385:47: warning: array subscript has type 'char' [-Wchar-subscripts]
  444.  
  445. dots = pgm_read_byte_near(&font_3x5[c][col]);
  446.  
  447. ^
  448.  
  449. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void putchar_4x7(byte, byte, char)':
  450.  
  451. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:403:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  452.  
  453. if (c >= 'A' && c <= 'Z' ||
  454.  
  455. ^
  456.  
  457. In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
  458.  
  459. from sketch\dotklok_rev_1_3.pde.cpp:1:
  460.  
  461. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:415:42: warning: array subscript has type 'char' [-Wchar-subscripts]
  462.  
  463. dots = pgm_read_byte_near(&font_4x7[c][col]);
  464.  
  465. ^
  466.  
  467. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:415:47: warning: array subscript has type 'char' [-Wchar-subscripts]
  468.  
  469. dots = pgm_read_byte_near(&font_4x7[c][col]);
  470.  
  471. ^
  472.  
  473. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void putchar_5x12(byte, byte, char)':
  474.  
  475. ht1632:432: error: 'prog_uint16_t' was not declared in this scope
  476.  
  477. prog_uint16_t dots;
  478.  
  479. ^
  480.  
  481. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:434:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  482.  
  483. if (c >= 'A' && c <= 'Z' ||
  484.  
  485. ^
  486.  
  487. ht1632:446: error: 'dots' was not declared in this scope
  488.  
  489. dots = pgm_read_word_near(&font_5x12[c][col]);
  490.  
  491. ^
  492.  
  493. In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
  494.  
  495. from sketch\dotklok_rev_1_3.pde.cpp:1:
  496.  
  497. ht1632:446: error: 'font_5x12' was not declared in this scope
  498.  
  499. dots = pgm_read_word_near(&font_5x12[c][col]);
  500.  
  501. ^
  502.  
  503. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void basic_time()':
  504.  
  505. time_animations:90: error: 'class Button' has no member named 'isPressed'
  506.  
  507. while( PAUSE && b5.isPressed( )); // pause mode for photos
  508.  
  509. ^
  510.  
  511. time_animations:93: error: 'class Button' has no member named 'isPressed'
  512.  
  513. if(b1.isPressed()){
  514.  
  515. ^
  516.  
  517. time_animations:94: error: 'class Button' has no member named 'uniquePress'
  518.  
  519. if(b3.uniquePress()){
  520.  
  521. ^
  522.  
  523. time_animations:101: error: 'class Button' has no member named 'uniquePress'
  524.  
  525. if(b4.uniquePress()){
  526.  
  527. ^
  528.  
  529. time_animations:121: error: 'class Button' has no member named 'isPressed'
  530.  
  531. if(b2.isPressed()){
  532.  
  533. ^
  534.  
  535. time_animations:122: error: 'class Button' has no member named 'uniquePress'
  536.  
  537. if(b3.uniquePress()){
  538.  
  539. ^
  540.  
  541. time_animations:129: error: 'class Button' has no member named 'uniquePress'
  542.  
  543. if(b4.uniquePress()){
  544.  
  545. ^
  546.  
  547. time_animations:139: error: 'class Button' has no member named 'isPressed'
  548.  
  549. if( b1.isPressed() && b2.isPressed() ){
  550.  
  551. ^
  552.  
  553. time_animations:139: error: 'class Button' has no member named 'isPressed'
  554.  
  555. if( b1.isPressed() && b2.isPressed() ){
  556.  
  557. ^
  558.  
  559. time_animations:140: error: 'class Button' has no member named 'uniquePress'
  560.  
  561. if( b1.uniquePress() || b2.uniquePress() ){
  562.  
  563. ^
  564.  
  565. time_animations:140: error: 'class Button' has no member named 'uniquePress'
  566.  
  567. if( b1.uniquePress() || b2.uniquePress() ){
  568.  
  569. ^
  570.  
  571. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void big_time()':
  572.  
  573. time_animations:233: error: 'class Button' has no member named 'isPressed'
  574.  
  575. while( PAUSE && b5.isPressed( )); // pause mode for photos
  576.  
  577. ^
  578.  
  579. time_animations:236: error: 'class Button' has no member named 'isPressed'
  580.  
  581. if(b1.isPressed()){
  582.  
  583. ^
  584.  
  585. time_animations:237: error: 'class Button' has no member named 'uniquePress'
  586.  
  587. if(b3.uniquePress()){
  588.  
  589. ^
  590.  
  591. time_animations:244: error: 'class Button' has no member named 'uniquePress'
  592.  
  593. if(b4.uniquePress()){
  594.  
  595. ^
  596.  
  597. time_animations:264: error: 'class Button' has no member named 'isPressed'
  598.  
  599. if(b2.isPressed()){
  600.  
  601. ^
  602.  
  603. time_animations:265: error: 'class Button' has no member named 'uniquePress'
  604.  
  605. if(b3.uniquePress()){
  606.  
  607. ^
  608.  
  609. time_animations:272: error: 'class Button' has no member named 'uniquePress'
  610.  
  611. if(b4.uniquePress()){
  612.  
  613. ^
  614.  
  615. time_animations:282: error: 'class Button' has no member named 'isPressed'
  616.  
  617. if( b1.isPressed() && b2.isPressed() ){
  618.  
  619. ^
  620.  
  621. time_animations:282: error: 'class Button' has no member named 'isPressed'
  622.  
  623. if( b1.isPressed() && b2.isPressed() ){
  624.  
  625. ^
  626.  
  627. time_animations:283: error: 'class Button' has no member named 'uniquePress'
  628.  
  629. if( b1.uniquePress() || b2.uniquePress() ){
  630.  
  631. ^
  632.  
  633. time_animations:283: error: 'class Button' has no member named 'uniquePress'
  634.  
  635. if( b1.uniquePress() || b2.uniquePress() ){
  636.  
  637. ^
  638.  
  639. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void basic_date_time()':
  640.  
  641. time_animations:388: error: 'class Button' has no member named 'isPressed'
  642.  
  643. while( PAUSE && b5.isPressed( )); // pause mode for photos
  644.  
  645. ^
  646.  
  647. time_animations:391: error: 'class Button' has no member named 'isPressed'
  648.  
  649. if(b1.isPressed() && b2.isPressed()){
  650.  
  651. ^
  652.  
  653. time_animations:391: error: 'class Button' has no member named 'isPressed'
  654.  
  655. if(b1.isPressed() && b2.isPressed()){
  656.  
  657. ^
  658.  
  659. time_animations:392: error: 'class Button' has no member named 'uniquePress'
  660.  
  661. if(b3.uniquePress()){
  662.  
  663. ^
  664.  
  665. time_animations:400: error: 'class Button' has no member named 'uniquePress'
  666.  
  667. if(b4.uniquePress()){
  668.  
  669. ^
  670.  
  671. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:401:28: warning: comparison is always false due to limited range of data type [-Wtype-limits]
  672.  
  673. if(time_now.month()==2099) RTC.adjust( DateTime(2000, time_now.month(), time_now.day(), time_now.hour(), time_now.minute(), time_now.second() ) );
  674.  
  675. ^
  676.  
  677. time_animations:411: error: 'class Button' has no member named 'isPressed'
  678.  
  679. if(b1.isPressed()){
  680.  
  681. ^
  682.  
  683. time_animations:412: error: 'class Button' has no member named 'uniquePress'
  684.  
  685. if(b3.uniquePress()){
  686.  
  687. ^
  688.  
  689. time_animations:420: error: 'class Button' has no member named 'uniquePress'
  690.  
  691. if(b4.uniquePress()){
  692.  
  693. ^
  694.  
  695. time_animations:431: error: 'class Button' has no member named 'isPressed'
  696.  
  697. if(b2.isPressed()){
  698.  
  699. ^
  700.  
  701. time_animations:432: error: 'class Button' has no member named 'uniquePress'
  702.  
  703. if(b3.uniquePress()){
  704.  
  705. ^
  706.  
  707. time_animations:440: error: 'class Button' has no member named 'uniquePress'
  708.  
  709. if(b4.uniquePress()){
  710.  
  711. ^
  712.  
  713. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:322:8: warning: unused variable 'pend_x' [-Wunused-variable]
  714.  
  715. byte pend_x;
  716.  
  717. ^
  718.  
  719. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:323:8: warning: unused variable 'pend_y' [-Wunused-variable]
  720.  
  721. byte pend_y;
  722.  
  723. ^
  724.  
  725. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void column_time()':
  726.  
  727. time_animations:535: error: 'class Button' has no member named 'isPressed'
  728.  
  729. while( PAUSE && b5.isPressed( )); // pause mode for photos
  730.  
  731. ^
  732.  
  733. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void float_time()':
  734.  
  735. time_animations:631: error: 'class Button' has no member named 'isPressed'
  736.  
  737. while( PAUSE && b5.isPressed( )); // pause mode for photos
  738.  
  739. ^
  740.  
  741. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void seconds_time()':
  742.  
  743. time_animations:686: error: 'class Button' has no member named 'isPressed'
  744.  
  745. if(b1.isPressed() && b3.uniquePress()){
  746.  
  747. ^
  748.  
  749. time_animations:686: error: 'class Button' has no member named 'uniquePress'
  750.  
  751. if(b1.isPressed() && b3.uniquePress()){
  752.  
  753. ^
  754.  
  755. time_animations:692: error: 'class Button' has no member named 'isPressed'
  756.  
  757. if(b1.isPressed() && b4.uniquePress()){
  758.  
  759. ^
  760.  
  761. time_animations:692: error: 'class Button' has no member named 'uniquePress'
  762.  
  763. if(b1.isPressed() && b4.uniquePress()){
  764.  
  765. ^
  766.  
  767. time_animations:699: error: 'class Button' has no member named 'isPressed'
  768.  
  769. while( PAUSE && b5.isPressed( )); // pause mode for photos
  770.  
  771. ^
  772.  
  773. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void percent_time()':
  774.  
  775. time_animations:768: error: 'class Button' has no member named 'isPressed'
  776.  
  777. while( PAUSE && b5.isPressed( )); // pause mode for photos
  778.  
  779. ^
  780.  
  781. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void random_dot_time()':
  782.  
  783. time_animations:856: error: 'class Button' has no member named 'isPressed'
  784.  
  785. while( PAUSE && b5.isPressed( )); // pause mode for photos
  786.  
  787. ^
  788.  
  789. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void pong_time()':
  790.  
  791. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:912:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  792.  
  793. if(millis()-time_ball >= ball_delay) {
  794.  
  795. ^
  796.  
  797. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:1042:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  798.  
  799. if(millis()-time_paddle>=paddle_delay && ball_x_pos>0 && ball_x_pos<X_MAX) {
  800.  
  801. ^
  802.  
  803. time_animations:1117: error: 'class Button' has no member named 'isPressed'
  804.  
  805. while( PAUSE && b5.isPressed( )); // pause mode for photos
  806.  
  807. ^
  808.  
  809. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:886:8: warning: unused variable 'score_L' [-Wunused-variable]
  810.  
  811. byte score_L=0;
  812.  
  813. ^
  814.  
  815. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:887:8: warning: unused variable 'score_R' [-Wunused-variable]
  816.  
  817. byte score_R=0;
  818.  
  819. ^
  820.  
  821. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void relative_column_time()':
  822.  
  823. time_animations:1187: error: 'class Button' has no member named 'isPressed'
  824.  
  825. while( PAUSE && b5.isPressed( )); // pause mode for photos
  826.  
  827. ^
  828.  
  829. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void analog_dot_time()':
  830.  
  831. time_animations:1285: error: 'class Button' has no member named 'isPressed'
  832.  
  833. while( PAUSE && b5.isPressed( )); // pause mode for photos
  834.  
  835. ^
  836.  
  837. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void morse_time()':
  838.  
  839. time_animations:1617: error: 'class Button' has no member named 'isPressed'
  840.  
  841. while( PAUSE && b5.isPressed( )); // pause mode for photos
  842.  
  843. ^
  844.  
  845. C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void binary_year_time()':
  846.  
  847. time_animations:1697: error: 'class Button' has no member named 'isPressed'
  848.  
  849. while( PAUSE && b5.isPressed( )); // pause mode for photos
  850.  
  851. ^
  852.  
  853. exit status 1
  854. variable 'font_3x5' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
  855.  
  856. This report would have more information with
  857. "Show verbose output during compilation"
  858. option enabled in File -> Preferences
Advertisement
Add Comment
Please, Sign In to add comment