I have some C code to print the copyright text held in the BOOT ROM ...That works on an RP2040, shows "(C) 2020 Raspberry Pi Trading Ltd", but doesn't show anything for the RP235X, ARM-S or RISC-V.
Am I doing something wrong or is this a Pico SDK issue ?
Code:
#define ROM_DATA(l,r) rom_data_lookup(rom_table_code(l,r))char * copyright_ptr = ROM_DATA('C', 'R');printf("Copyright Text : %s\n", copyright_ptr);Am I doing something wrong or is this a Pico SDK issue ?
Statistics: Posted by hippy — Wed Oct 30, 2024 10:49 am — Replies 1 — Views 57