12 lines
412 B
C++
12 lines
412 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <span>
|
|
#include <string_view>
|
|
#include "wire.h"
|
|
|
|
extern std::string_view firmware_name;
|
|
|
|
size_t handle_picoboot(uint32_t message_id, std::span<const uint8_t> payload, span_writer &out);
|
|
size_t handle_info(uint32_t message_id, std::span<const uint8_t> payload, span_writer &out);
|
|
size_t handle_log(uint32_t message_id, std::span<const uint8_t> payload, span_writer &out);
|