Lines Matching refs:OLED_GRAM
29 uint8_t OLED_GRAM[8][OLED_PAGE_SIZES]; variable
265 uint8_t buf = OLED_GRAM[0][0]; in zip_oled_gram()
270 if (OLED_GRAM[i][j] == buf) { in zip_oled_gram()
278 if (OLED_GRAM[i][j] != buf) { in zip_oled_gram()
282 buf = OLED_GRAM[i][j]; in zip_oled_gram()
302 write_data_page(OLED_GRAM[i], OLED_PAGE_SIZES); in OLED_Refresh_GRAM()
327 printf("%02X", OLED_GRAM[i][j]); in OLED_Refresh_GRAM()
340 OLED_GRAM[i][j] = 0x0; in OLED_Clear()
348 OLED_GRAM[i][j] = 0xff; in OLED_Full()
356 OLED_GRAM[i][j] = frame[i][j]; in OLED_Frame_Draw()
358 printf("OLED_GRAM[%d][0] = %02X;\n", i, OLED_GRAM[i][0]); in OLED_Frame_Draw()
387 OLED_GRAM[page_0 + byte_y][column_0 + byte_x] &= in OLED_Icon_Draw()
391 OLED_GRAM[page_0 + byte_y][column_0 + byte_x] &= in OLED_Icon_Draw()
395 OLED_GRAM[page_0 + byte_y][column_0 + byte_x] |= in OLED_Icon_Draw()
403 OLED_GRAM[page_0 + byte_y + 1][column_0 + byte_x] &= in OLED_Icon_Draw()
407 OLED_GRAM[page_0 + byte_y + 1][column_0 + byte_x] &= in OLED_Icon_Draw()
411 OLED_GRAM[page_0 + byte_y + 1][column_0 + byte_x] |= in OLED_Icon_Draw()
433 OLED_GRAM[page][x] &= ~mask; in OLED_DrawPoint()
435 OLED_GRAM[page][x] |= mask; in OLED_DrawPoint()
437 OLED_GRAM[page][x] ^= mask; in OLED_DrawPoint()