Remove warning fpga_model should be 32 bits because A2560U doc says is 2x16 BCD numbers.

This commit is contained in:
Vincent Barrilliot 2023-11-03 22:06:13 +01:00
parent 88fc94eea7
commit 2693a33046

View file

@ -61,7 +61,7 @@ typedef struct s_sys_info {
const char * cpu_name; /* Human readable name for the CPU */ const char * cpu_name; /* Human readable name for the CPU */
uint32_t cpu_clock_khz; /* Speed of the CPU clock in KHz */ uint32_t cpu_clock_khz; /* Speed of the CPU clock in KHz */
uint32_t fpga_date; /* YYYYMMDD */ uint32_t fpga_date; /* YYYYMMDD */
uint16_t fpga_model; /* FPGA model number */ uint32_t fpga_model; /* FPGA model number */
uint16_t fpga_version; /* FPGA version */ uint16_t fpga_version; /* FPGA version */
uint16_t fpga_subver; /* FPGA sub-version */ uint16_t fpga_subver; /* FPGA sub-version */
uint32_t system_ram_size; /* The number of bytes of system RAM on the board */ uint32_t system_ram_size; /* The number of bytes of system RAM on the board */