forked from Ft-Available/RX5808-Div
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
88 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
#pragma once | ||
#include <stdint.h> | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
void graph_video_set_color(int x, int y, uint8_t r,uint8_t g,uint8_t b); | ||
void graph_video_set_color_8bit(int x_pos, int y_pos, uint8_t c); | ||
#include <stdint.h> | ||
#include "esp_attr.h" | ||
void IRAM_ATTR graph_video_set_color(int x, int y, uint8_t r,uint8_t g,uint8_t b); | ||
void IRAM_ATTR graph_video_set_color_8bit(int x_pos, int y_pos, uint8_t c); | ||
void graph_video_start(bool ntsc); | ||
void graph_video_stop(); | ||
void graph_video_sync(); | ||
void IRAM_ATTR graph_video_sync(); | ||
#ifdef __cplusplus | ||
} | ||
#endif |
Oops, something went wrong.