17 lines
205 B
C++
17 lines
205 B
C++
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
#include "hardware/flash.h"
|
|
|
|
namespace {
|
|
static uint16_t PAGE_SIZE{256};
|
|
}
|
|
|
|
int main()
|
|
{
|
|
stdio_init_all();
|
|
|
|
|
|
puts("Hello, world!");
|
|
|
|
return 0;
|
|
}
|