mirror of
https://github.com/olikraus/u8g2.git
synced 2025-05-09 00:02:39 +08:00
fixed unused parameter warning
This commit is contained in:
parent
0d381b4142
commit
421889ca29
@ -48,7 +48,7 @@
|
|||||||
/*=============================================*/
|
/*=============================================*/
|
||||||
/* callbacks */
|
/* callbacks */
|
||||||
|
|
||||||
extern "C" uint8_t u8x8_gpio_and_delay_arduino(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
|
extern "C" uint8_t u8x8_gpio_and_delay_arduino(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, U8X8_UNUSED void *arg_ptr)
|
||||||
{
|
{
|
||||||
uint8_t i;
|
uint8_t i;
|
||||||
switch(msg)
|
switch(msg)
|
||||||
|
@ -932,7 +932,7 @@ void u8g2_SetFontRefHeightAll(u8g2_t *u8g2)
|
|||||||
/*===============================================*/
|
/*===============================================*/
|
||||||
/* callback procedures to correct the y position */
|
/* callback procedures to correct the y position */
|
||||||
|
|
||||||
u8g2_uint_t u8g2_font_calc_vref_font(u8g2_t *u8g2)
|
u8g2_uint_t u8g2_font_calc_vref_font(U8X8_UNUSED u8g2_t *u8g2)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ uint8_t u8g2_GetNullKerning(u8g2_t *u8g2, uint16_t e1, uint16_t e2)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* this function is used as "u8g2_get_kerning_cb" */
|
/* this function is used as "u8g2_get_kerning_cb" */
|
||||||
uint8_t u8g2_GetKerning(u8g2_t *u8g2, u8g2_kerning_t *kerning, uint16_t e1, uint16_t e2)
|
uint8_t u8g2_GetKerning(U8X8_UNUSED u8g2_t *u8g2, u8g2_kerning_t *kerning, uint16_t e1, uint16_t e2)
|
||||||
{
|
{
|
||||||
uint16_t i1, i2, cnt, end;
|
uint16_t i1, i2, cnt, end;
|
||||||
if ( kerning == NULL )
|
if ( kerning == NULL )
|
||||||
@ -75,7 +75,7 @@ uint8_t u8g2_GetKerning(u8g2_t *u8g2, u8g2_kerning_t *kerning, uint16_t e1, uint
|
|||||||
return kerning->kerning_values[i2];
|
return kerning->kerning_values[i2];
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t u8g2_GetKerningByTable(u8g2_t *u8g2, const uint16_t *kt, uint16_t e1, uint16_t e2)
|
uint8_t u8g2_GetKerningByTable(U8X8_UNUSED u8g2_t *u8g2, const uint16_t *kt, uint16_t e1, uint16_t e2)
|
||||||
{
|
{
|
||||||
uint16_t i;
|
uint16_t i;
|
||||||
i = 0;
|
i = 0;
|
||||||
|
@ -301,7 +301,7 @@ void pg_ClearPolygonXY(pg_struct *pg)
|
|||||||
pg->cnt = 0;
|
pg->cnt = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void pg_AddPolygonXY(pg_struct *pg, u8g2_t *u8g2, int16_t x, int16_t y)
|
void pg_AddPolygonXY(pg_struct *pg, int16_t x, int16_t y)
|
||||||
{
|
{
|
||||||
if ( pg->cnt < PG_MAX_POINTS )
|
if ( pg->cnt < PG_MAX_POINTS )
|
||||||
{
|
{
|
||||||
@ -325,9 +325,9 @@ void u8g2_ClearPolygonXY(void)
|
|||||||
pg_ClearPolygonXY(&u8g2_pg);
|
pg_ClearPolygonXY(&u8g2_pg);
|
||||||
}
|
}
|
||||||
|
|
||||||
void u8g2_AddPolygonXY(u8g2_t *u8g2, int16_t x, int16_t y)
|
void u8g2_AddPolygonXY(U8X8_UNUSED u8g2_t *u8g2, int16_t x, int16_t y)
|
||||||
{
|
{
|
||||||
pg_AddPolygonXY(&u8g2_pg, u8g2, x, y);
|
pg_AddPolygonXY(&u8g2_pg, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void u8g2_DrawPolygon(u8g2_t *u8g2)
|
void u8g2_DrawPolygon(u8g2_t *u8g2)
|
||||||
|
@ -136,9 +136,11 @@ extern "C" {
|
|||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
# define U8X8_NOINLINE __attribute__((noinline))
|
# define U8X8_NOINLINE __attribute__((noinline))
|
||||||
# define U8X8_SECTION(name) __attribute__ ((section (name)))
|
# define U8X8_SECTION(name) __attribute__ ((section (name)))
|
||||||
|
# define U8X8_UNUSED __attribute__((unused))
|
||||||
#else
|
#else
|
||||||
# define U8X8_SECTION(name)
|
# define U8X8_SECTION(name)
|
||||||
# define U8X8_NOINLINE
|
# define U8X8_NOINLINE
|
||||||
|
# define U8X8_UNUSED
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__GNUC__) && defined(__AVR__)
|
#if defined(__GNUC__) && defined(__AVR__)
|
||||||
|
@ -196,7 +196,7 @@ void u8x8_utf8_init(u8x8_t *u8x8)
|
|||||||
u8x8->utf8_state = 0; /* also reset during u8x8_SetupDefaults() */
|
u8x8->utf8_state = 0; /* also reset during u8x8_SetupDefaults() */
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t u8x8_ascii_next(u8x8_t *u8x8, uint8_t b)
|
uint16_t u8x8_ascii_next(U8X8_UNUSED u8x8_t *u8x8, uint8_t b)
|
||||||
{
|
{
|
||||||
if ( b == 0 || b == '\n' ) /* '\n' terminates the string to support the string list procedures */
|
if ( b == 0 || b == '\n' ) /* '\n' terminates the string to support the string list procedures */
|
||||||
return 0x0ffff; /* end of string detected*/
|
return 0x0ffff; /* end of string detected*/
|
||||||
|
@ -61,7 +61,7 @@ uint16_t get_delay_in_milliseconds(uint8_t cnt, uint8_t *data)
|
|||||||
return time;
|
return time;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t u8x8_d_a2printer_common(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
|
uint8_t u8x8_d_a2printer_common(u8x8_t *u8x8, uint8_t msg, U8X8_UNUSED uint8_t arg_int, void *arg_ptr)
|
||||||
{
|
{
|
||||||
uint8_t c, i, j;
|
uint8_t c, i, j;
|
||||||
uint8_t *ptr;
|
uint8_t *ptr;
|
||||||
|
@ -67,7 +67,7 @@ static const u8x8_display_info_t u8x8_ls013b7dh03_128x128_display_info =
|
|||||||
/* pixel_height = */ 128
|
/* pixel_height = */ 128
|
||||||
};
|
};
|
||||||
|
|
||||||
uint8_t u8x8_d_ls013b7dh03_128x128(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
|
uint8_t u8x8_d_ls013b7dh03_128x128(u8x8_t *u8x8, uint8_t msg, U8X8_UNUSED uint8_t arg_int, void *arg_ptr)
|
||||||
{
|
{
|
||||||
uint8_t y, c, i;
|
uint8_t y, c, i;
|
||||||
uint8_t *ptr;
|
uint8_t *ptr;
|
||||||
|
@ -130,7 +130,7 @@ uint8_t u8x8_write_byte_to_16gr_device(u8x8_t *u8x8, uint8_t b)
|
|||||||
|
|
||||||
static uint8_t u8x8_ssd1322_8to32_dest_buf[32];
|
static uint8_t u8x8_ssd1322_8to32_dest_buf[32];
|
||||||
|
|
||||||
static uint8_t *u8x8_ssd1322_8to32(u8x8_t *u8x8, uint8_t *ptr)
|
static uint8_t *u8x8_ssd1322_8to32(U8X8_UNUSED u8x8_t *u8x8, uint8_t *ptr)
|
||||||
{
|
{
|
||||||
uint8_t v;
|
uint8_t v;
|
||||||
uint8_t a,b;
|
uint8_t a,b;
|
||||||
|
@ -116,7 +116,7 @@ static const uint8_t u8x8_d_ssd1325_128x64_nhd_flip1_seq[] = {
|
|||||||
|
|
||||||
static uint8_t u8x8_ssd1325_8to32_dest_buf[32];
|
static uint8_t u8x8_ssd1325_8to32_dest_buf[32];
|
||||||
|
|
||||||
static uint8_t *u8x8_ssd1325_8to32(u8x8_t *u8x8, uint8_t *ptr)
|
static uint8_t *u8x8_ssd1325_8to32(U8X8_UNUSED u8x8_t *u8x8, uint8_t *ptr)
|
||||||
{
|
{
|
||||||
uint8_t v;
|
uint8_t v;
|
||||||
uint8_t a,b;
|
uint8_t a,b;
|
||||||
|
@ -70,7 +70,7 @@ void bitmap_show(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
uint8_t u8x8_d_stdio(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
|
uint8_t u8x8_d_stdio(U8X8_UNUSED u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
|
||||||
{
|
{
|
||||||
switch(msg)
|
switch(msg)
|
||||||
{
|
{
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
#include "u8x8.h"
|
#include "u8x8.h"
|
||||||
|
|
||||||
uint8_t u8x8_dummy_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
|
uint8_t u8x8_dummy_cb(U8X8_UNUSED u8x8_t *u8x8, U8X8_UNUSED uint8_t msg, U8X8_UNUSED uint8_t arg_int, U8X8_UNUSED void *arg_ptr)
|
||||||
{
|
{
|
||||||
/* the dummy callback will not handle any message and will fail for all messages */
|
/* the dummy callback will not handle any message and will fail for all messages */
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -155,7 +155,7 @@ AVRDUDE = $(AVRDUDE_PATH)avrdude
|
|||||||
COMMON_FLAGS = -DF_CPU=$(F_CPU) -mmcu=$(MCU) $(DEFS) -DARDUINO=100
|
COMMON_FLAGS = -DF_CPU=$(F_CPU) -mmcu=$(MCU) $(DEFS) -DARDUINO=100
|
||||||
# COMMON_FLAGS += -gdwarf-2
|
# COMMON_FLAGS += -gdwarf-2
|
||||||
COMMON_FLAGS += -Os
|
COMMON_FLAGS += -Os
|
||||||
COMMON_FLAGS += -Wall -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
|
COMMON_FLAGS += -Wall -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -Wunused
|
||||||
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/cores/arduino
|
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/cores/arduino
|
||||||
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/variants/$(VARIANT)
|
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/variants/$(VARIANT)
|
||||||
COMMON_FLAGS += -I. -I$(U8G_PATH) -I$(U8G_CPP_PATH)
|
COMMON_FLAGS += -I. -I$(U8G_PATH) -I$(U8G_CPP_PATH)
|
||||||
|
@ -87,7 +87,7 @@
|
|||||||
//U8G2_ST7565_NHD_C12832_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
|
//U8G2_ST7565_NHD_C12832_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
|
||||||
//U8G2_ST7565_NHD_C12832_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
|
//U8G2_ST7565_NHD_C12832_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
|
||||||
//U8G2_T6963_240X128_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
|
//U8G2_T6963_240X128_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
|
||||||
//U8G2_T6963_256X64_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
|
U8G2_T6963_256X64_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect RD with +5V, FS0 and FS1 with GND
|
||||||
//U8G2_SED1330_240X128_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect /RD = E with +5V, enable is /WR = RW, FG with GND, 14=Uno Pin A0
|
//U8G2_SED1330_240X128_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect /RD = E with +5V, enable is /WR = RW, FG with GND, 14=Uno Pin A0
|
||||||
//U8G2_SED1330_240X128_1_6800 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // A0 is dc pin, /WR = RW = GND, enable is /RD = E
|
//U8G2_SED1330_240X128_1_6800 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // A0 is dc pin, /WR = RW = GND, enable is /RD = E
|
||||||
//U8G2_RA8835_NHD_240X128_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect /RD = E with +5V, enable is /WR = RW, FG with GND, 14=Uno Pin A0
|
//U8G2_RA8835_NHD_240X128_1_8080 u8g2(U8G2_R0, 8, 9, 10, 11, 4, 5, 6, 7, /*enable=*/ 17, /*cs=*/ 14, /*dc=*/ 15, /*reset=*/ 16); // Connect /RD = E with +5V, enable is /WR = RW, FG with GND, 14=Uno Pin A0
|
||||||
|
@ -157,7 +157,7 @@ AVRDUDE = $(AVRDUDE_PATH)avrdude
|
|||||||
COMMON_FLAGS = -DF_CPU=$(F_CPU) -mmcu=$(MCU) $(DEFS) -DARDUINO=100
|
COMMON_FLAGS = -DF_CPU=$(F_CPU) -mmcu=$(MCU) $(DEFS) -DARDUINO=100
|
||||||
# COMMON_FLAGS += -gdwarf-2
|
# COMMON_FLAGS += -gdwarf-2
|
||||||
COMMON_FLAGS += -Os
|
COMMON_FLAGS += -Os
|
||||||
COMMON_FLAGS += -Wall -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
|
COMMON_FLAGS += -Wall -Wextra -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
|
||||||
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/cores/arduino
|
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/cores/arduino
|
||||||
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/variants/$(VARIANT)
|
COMMON_FLAGS += -I$(ARDUINO_PATH)hardware/arduino/variants/$(VARIANT)
|
||||||
COMMON_FLAGS += -I. -I$(U8G_PATH) -I$(U8G_CPP_PATH)
|
COMMON_FLAGS += -I. -I$(U8G_PATH) -I$(U8G_CPP_PATH)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user