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