From 586850e66f628181153ee8129d8a1dbaf1930250 Mon Sep 17 00:00:00 2001 From: Nicolas Pouillon Date: Wed, 23 Nov 2022 01:26:16 +0100 Subject: [PATCH] binary_info/structure.h: Fix pins_with_func format comment (#1070) --- .../pico_binary_info/include/pico/binary_info/structure.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/pico_binary_info/include/pico/binary_info/structure.h b/src/common/pico_binary_info/include/pico/binary_info/structure.h index 49d2fd6..4808048 100644 --- a/src/common/pico_binary_info/include/pico/binary_info/structure.h +++ b/src/common/pico_binary_info/include/pico/binary_info/structure.h @@ -108,8 +108,8 @@ typedef struct __packed _binary_info_block_device { typedef struct __packed _binary_info_pins_with_func { struct _binary_info_core core; - // p4_5 : p3_5 : p2_5 : p1_5 : p0_5 : func_4 : 001_3 //individual pins p0,p1,p2,p3,p4 ... if fewer than 5 then duplicate p - // phi_5 : plo_5 : func_4 : 010_3 // pin range plo-phi inclusive + // p4_5 : p3_5 : p2_5 : p1_5 : p0_5 : func_4 : 010_3 //individual pins p0,p1,p2,p3,p4 ... if fewer than 5 then duplicate p + // phi_5 : plo_5 : func_4 : 001_3 // pin range plo-phi inclusive uint32_t pin_encoding; } binary_info_pins_with_func_t; @@ -148,4 +148,4 @@ enum { #ifdef __cplusplus } #endif -#endif \ No newline at end of file +#endif