binary_info/structure.h: Fix pins_with_func format comment (#1070)

This commit is contained in:
Nicolas Pouillon 2022-11-23 01:26:16 +01:00 committed by GitHub
parent 5258ee640b
commit 586850e66f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
#endif