2022-01-22 12:30:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "stdint.h"
|
|
|
|
|
2022-01-23 15:44:47 +00:00
|
|
|
struct FrameBuffer;
|
|
|
|
|
2022-01-22 12:30:34 +00:00
|
|
|
uint32_t get_vc_firmware_rev(void);
|
2022-01-23 15:44:47 +00:00
|
|
|
uint8_t* get_board_mac_address(uint8_t* buffer);
|
|
|
|
|
|
|
|
void create_framebuffer(struct FrameBuffer* buffer, unsigned int width, unsigned int height);
|