Skip to content

Commit 25d5b43

Browse files
committed
Review fixups
Comments and readme
1 parent 4235e8f commit 25d5b43

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff 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

9191
App|Description
9292
---|---

encrypted/hello_encrypted/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Example encrypted binard
1+
# Example encrypted binary
22
add_executable(hello_encrypted
33
hello_encrypted.c
44
secret.S
55
)
66

7-
# include secret.txt
7+
# include directory containing secret.txt
88
target_include_directories(hello_encrypted PRIVATE ${CMAKE_CURRENT_LIST_DIR})
99

1010
# add dependency on secret.txt

encrypted/hello_encrypted/hello_encrypted.c

+1-1
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)