2024-02-06 15:50:50 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "pico/stdlib.h"
|
2024-02-06 16:16:18 +01:00
|
|
|
#include "hardware/flash.h"
|
2024-02-06 15:50:50 +01:00
|
|
|
|
2024-02-06 16:16:18 +01:00
|
|
|
namespace {
|
|
|
|
static uint16_t PAGE_SIZE{256};
|
|
|
|
}
|
2024-02-06 15:50:50 +01:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
stdio_init_all();
|
|
|
|
|
|
|
|
|
|
|
|
puts("Hello, world!");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|