10 lines
226 B
C++
10 lines
226 B
C++
#pragma once
|
|
#include <string_view>
|
|
#include "wire.h"
|
|
#include "usb_cdc.h"
|
|
|
|
extern std::string_view firmware_name;
|
|
|
|
void handle_picoboot(usb_cdc& usb, uint32_t message_id);
|
|
void handle_info(usb_cdc& usb, uint32_t message_id);
|