File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ out.each { |l| puts d(l) }
3333#define pgm_read_word_near (address_short ) (* (const uint16_t *) (address_short) )
3434#define pgm_read_dword_near (address_short ) (* (const uint32_t *) (address_short) )
3535#define pgm_read_float_near (address_short ) (* (const float *) (address_short) )
36- #define pgm_read_ptr_near (address_short ) (* (const void *) (address_short) )
36+ #define pgm_read_ptr_near (address_short ) (* (const void **) (address_short) )
3737
3838#define pgm_read_byte_far (address_long ) (* (const uint8_t *) (address_long) )
3939#define pgm_read_word_far (address_long ) (* (const uint16_t *) (address_long) )
4040#define pgm_read_dword_far (address_long ) (* (const uint32_t *) (address_long) )
4141#define pgm_read_float_far (address_long ) (* (const float *) (address_long) )
42- #define pgm_read_ptr_far (address_long ) (* (const void *) (address_long) )
42+ #define pgm_read_ptr_far (address_long ) (* (const void **) (address_long) )
4343
4444#define pgm_read_byte (address_short ) pgm_read_byte_near(address_short)
4545#define pgm_read_word (address_short ) pgm_read_word_near(address_short)
You can’t perform that action at this time.
0 commit comments