File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
encrypted/hello_encrypted Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ App|Description
8686[ channel_irq] ( dma/channel_irq ) | Use an IRQ handler to reconfigure a DMA channel, in order to continuously drive data through a PIO state machine.
8787[ sniff_crc] ( dma/sniff_crc ) | Use the DMA engine's 'sniff' capability to calculate a CRC32 on a data buffer.
8888
89- ### Encrypted
89+ ### Encrypted (RP235x Only)
9090
9191App|Description
9292---|---
Original file line number Diff line number Diff line change 1- # Example encrypted binard
1+ # Example encrypted binary
22add_executable (hello_encrypted
33 hello_encrypted.c
44 secret.S
55 )
66
7- # include secret.txt
7+ # include directory containing secret.txt
88target_include_directories (hello_encrypted PRIVATE ${CMAKE_CURRENT_LIST_DIR} )
99
1010# add dependency on secret.txt
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ int main() {
2424 uint32_t flash_update_base = boot_info .reboot_params [0 ];
2525 if (flash_update_base ) {
2626 printf ("Perform self-check... " );
27- if (1 == 1 ) {
27+ if (1 == 1 ) { // replace this with your actual self-check function
2828 printf ("passed\n" );
2929 } else {
3030 printf ("failed - looping forever\n" );
You can’t perform that action at this time.
0 commit comments