File tree 1 file changed +2
-2
lines changed
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) }
33
33
#define pgm_read_word_near (address_short ) (* (const uint16_t *) (address_short) )
34
34
#define pgm_read_dword_near (address_short ) (* (const uint32_t *) (address_short) )
35
35
#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) )
37
37
38
38
#define pgm_read_byte_far (address_long ) (* (const uint8_t *) (address_long) )
39
39
#define pgm_read_word_far (address_long ) (* (const uint16_t *) (address_long) )
40
40
#define pgm_read_dword_far (address_long ) (* (const uint32_t *) (address_long) )
41
41
#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) )
43
43
44
44
#define pgm_read_byte (address_short ) pgm_read_byte_near(address_short)
45
45
#define pgm_read_word (address_short ) pgm_read_word_near(address_short)
You can’t perform that action at this time.
0 commit comments