From aa99d267b721809d3fef96402988575d2b3b08b7 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Sat, 25 Mar 2023 07:07:59 +0800 Subject: [PATCH] Change the private default signal number to 32 and remove the unused private signal number macro Signed-off-by: Xiang Xiao --- examples/README.md | 12 ++++-------- examples/ajoystick/Kconfig | 2 +- examples/ajoystick/ajoy_main.c | 2 +- examples/alarm/Kconfig | 2 +- examples/buttons/buttons_main.c | 2 +- examples/chrono/chrono_main.c | 2 +- examples/djoystick/Kconfig | 2 +- examples/djoystick/djoy_main.c | 2 +- examples/nx/Kconfig | 6 ------ examples/nx/nx_internal.h | 3 --- examples/nxdemo/nxdemo.h | 3 --- examples/nxhello/Kconfig | 6 ------ examples/nxhello/nxhello.h | 3 --- examples/nximage/Kconfig | 6 ------ examples/nximage/nximage.h | 6 ++---- examples/nxlines/Kconfig | 6 ------ examples/nxlines/nxlines.h | 3 --- examples/nxscope/Kconfig | 2 +- examples/nxterm/Kconfig | 5 ----- examples/nxterm/nxterm_internal.h | 3 --- examples/oneshot/Kconfig | 2 +- examples/oneshot/oneshot_main.c | 2 +- examples/timer/Kconfig | 2 +- examples/timer/timer_main.c | 2 +- examples/timer_gpio/Kconfig | 2 +- examples/zerocross/Kconfig | 2 +- examples/zerocross/zerocross_main.c | 2 +- games/shift/shift_input_joystick.h | 2 +- graphics/nxwm/Kconfig | 12 ++++++------ include/graphics/nxwm/nxwmconfig.hxx | 6 +++--- include/graphics/twm4nx/apps/calib_config.hxx | 2 +- include/graphics/twm4nx/twm4nx_config.hxx | 2 +- include/netutils/netinit.h | 2 +- netutils/netinit/Kconfig | 2 +- testing/drivertest/drivertest_timer.c | 2 +- 35 files changed, 36 insertions(+), 86 deletions(-) diff --git a/examples/README.md b/examples/README.md index 0f07e6673..66beee97d 100644 --- a/examples/README.md +++ b/examples/README.md @@ -60,7 +60,7 @@ Example Configuration: - `CONFIG_EXAMPLES_AJOYSTICK_DEVNAME` – Joystick device name. Default `/dev/adjoy0`. - `CONFIG_EXAMPLES_AJOYSTICK_SIGNO` – Signal used to signal the test - application. Default `13`. + application. Default `32`. ## `alarm` RTC Alarm @@ -278,7 +278,7 @@ Example Configuration: - `CONFIG_EXAMPLES_DJOYSTICK_DEVNAME` – Joystick device name. Default `/dev/djoy0`. - `CONFIG_EXAMPLES_DJOYSTICK_SIGNO` – Signal used to signal the test - application. Default `13`. + application. Default `32`. ## `elf` ELF loader @@ -940,8 +940,6 @@ This directory contains a simple test of a subset of the NX APIs defined in - `CONFIG_EXAMPLES_NX_SERVERPRIO` – The server priority. Default: `120` - `CONFIG_EXAMPLES_NX_LISTENERPRIO` – The priority of the event listener thread. Default `80`. -- `CONFIG_EXAMPLES_NX_NOTIFYSIGNO` – The signal number to use with - `nx_eventnotify()`. Default: `4`. The example also has the following settings and will generate an error if they are not as expected: @@ -998,8 +996,6 @@ The following configuration options can be selected to customize the test: - `CONFIG_EXAMPLES_NXTERM_SERVERPRIO` – The server priority. Default: `120`. - `CONFIG_EXAMPLES_NXTERM_LISTENERPRIO` – The priority of the event listener thread. Default: `80`. -- `CONFIG_EXAMPLES_NXTERM_NOTIFYSIGNO` – The signal number to use with - `nx_eventnotify()`. Default: `4`. ## `nxflat` NXFLAT Binary @@ -1143,7 +1139,7 @@ The following configuration options can be selected: - `CONFIG_EXAMPLES_NXTEXT_LISTENERPRIO` – The priority of the event listener thread. Default: `80`. - `CONFIG_EXAMPLES_NXTEXT_NOTIFYSIGNO` – The signal number to use with - `nx_eventnotify()`. Default: `4`. + `nx_eventnotify()`. Default: `32`. The example also expects the following settings and will generate an error if they are not as expected: @@ -1766,7 +1762,7 @@ Example configuration: Default: `1000000`. - `EXAMPLES_TIMER_GPIO_SIGNO` – This is the signal number that is used to notify that a timer interrupt occurred. - Default: `17`. + Default: `32`. - `EXAMPLES_TIMER_GPIO_STACKSIZE` – This is the stack size allocated when the timer task runs. Default: `2048`. diff --git a/examples/ajoystick/Kconfig b/examples/ajoystick/Kconfig index 63ec2d2b5..ba58596d3 100644 --- a/examples/ajoystick/Kconfig +++ b/examples/ajoystick/Kconfig @@ -18,6 +18,6 @@ config EXAMPLES_AJOYSTICK_DEVNAME config EXAMPLES_AJOYSTICK_SIGNO int "Joystick signal" - default 13 + default 32 endif diff --git a/examples/ajoystick/ajoy_main.c b/examples/ajoystick/ajoy_main.c index 2a887d895..c66a2c1a1 100644 --- a/examples/ajoystick/ajoy_main.c +++ b/examples/ajoystick/ajoy_main.c @@ -51,7 +51,7 @@ #endif #ifndef CONFIG_EXAMPLES_AJOYSTICK_SIGNO -# define CONFIG_EXAMPLES_AJOYSTICK_SIGNO 13 +# define CONFIG_EXAMPLES_AJOYSTICK_SIGNO 32 #endif #define FULL_RANGE 16 diff --git a/examples/alarm/Kconfig b/examples/alarm/Kconfig index e36961f35..6abff44f4 100644 --- a/examples/alarm/Kconfig +++ b/examples/alarm/Kconfig @@ -33,6 +33,6 @@ config EXAMPLES_ALARM_DEVPATH config EXAMPLES_ALARM_SIGNO int "Alarm signal" - default 1 + default 32 endif # EXAMPLES_ALARM diff --git a/examples/buttons/buttons_main.c b/examples/buttons/buttons_main.c index 3fc9b1c9d..2e034bc7d 100644 --- a/examples/buttons/buttons_main.c +++ b/examples/buttons/buttons_main.c @@ -50,7 +50,7 @@ #endif #ifndef CONFIG_EXAMPLES_BUTTONS_SIGNO -# define CONFIG_EXAMPLES_BUTTONS_SIGNO 13 +# define CONFIG_EXAMPLES_BUTTONS_SIGNO 32 #endif #ifndef CONFIG_INPUT_BUTTONS_POLL_DELAY diff --git a/examples/chrono/chrono_main.c b/examples/chrono/chrono_main.c index b909e00b4..1902b92ad 100644 --- a/examples/chrono/chrono_main.c +++ b/examples/chrono/chrono_main.c @@ -44,7 +44,7 @@ * Pre-processor Definitions ****************************************************************************/ -#define BUTTON_SIGNO 13 +#define BUTTON_SIGNO 32 #define BUTTON_STACKSIZE 2048 #define BUTTON_PRIORITY 100 #define BUTTON_DEVPATH "/dev/buttons" diff --git a/examples/djoystick/Kconfig b/examples/djoystick/Kconfig index 82648d704..7bfad3a2e 100644 --- a/examples/djoystick/Kconfig +++ b/examples/djoystick/Kconfig @@ -18,6 +18,6 @@ config EXAMPLES_DJOYSTICK_DEVNAME config EXAMPLES_DJOYSTICK_SIGNO int "Joystick signal" - default 13 + default 32 endif diff --git a/examples/djoystick/djoy_main.c b/examples/djoystick/djoy_main.c index 2ae89d299..f32de94d6 100644 --- a/examples/djoystick/djoy_main.c +++ b/examples/djoystick/djoy_main.c @@ -50,7 +50,7 @@ #endif #ifndef CONFIG_EXAMPLES_DJOYSTICK_SIGNO -# define CONFIG_EXAMPLES_DJOYSTICK_SIGNO 13 +# define CONFIG_EXAMPLES_DJOYSTICK_SIGNO 32 #endif /**************************************************************************** diff --git a/examples/nx/Kconfig b/examples/nx/Kconfig index c5ac50ac9..29baace4f 100644 --- a/examples/nx/Kconfig +++ b/examples/nx/Kconfig @@ -103,10 +103,4 @@ config EXAMPLES_NX_LISTENERPRIO ---help--- The priority of the event listener thread. Default 80. -config EXAMPLES_NX_NOTIFYSIGNO - int "Notify Signal Number" - default 4 - ---help--- - The signal number to use with nx_eventnotify(). Default: 4 - endif diff --git a/examples/nx/nx_internal.h b/examples/nx/nx_internal.h index 906466162..206443a6b 100644 --- a/examples/nx/nx_internal.h +++ b/examples/nx/nx_internal.h @@ -134,9 +134,6 @@ #ifndef CONFIG_EXAMPLES_NX_SERVERPRIO # define CONFIG_EXAMPLES_NX_SERVERPRIO 120 #endif -#ifndef CONFIG_EXAMPLES_NX_NOTIFYSIGNO -# define CONFIG_EXAMPLES_NX_NOTIFYSIGNO 4 -#endif #ifdef CONFIG_EXAMPLES_NX_RAWWINDOWS # define NXEGWINDOW NXWINDOW diff --git a/examples/nxdemo/nxdemo.h b/examples/nxdemo/nxdemo.h index 60781a85e..696526967 100644 --- a/examples/nxdemo/nxdemo.h +++ b/examples/nxdemo/nxdemo.h @@ -99,9 +99,6 @@ #ifndef CONFIG_EXAMPLES_NXDEMO_SERVERPRIO # define CONFIG_EXAMPLES_NXDEMO_SERVERPRIO 120 #endif -#ifndef CONFIG_EXAMPLES_NXDEMO_NOTIFYSIGNO -# define CONFIG_EXAMPLES_NXDEMO_NOTIFYSIGNO 4 -#endif /* Image Information ********************************************************/ diff --git a/examples/nxhello/Kconfig b/examples/nxhello/Kconfig index ee29ec205..63f3850db 100644 --- a/examples/nxhello/Kconfig +++ b/examples/nxhello/Kconfig @@ -102,10 +102,4 @@ config EXAMPLES_NXHELLO_LISTENERPRIO ---help--- The priority of the event listener thread. Default 80. -config EXAMPLES_NXHELLO_NOTIFYSIGNO - int "Notify Signal Number" - default 4 - ---help--- - The signal number to use with nx_eventnotify(). Default: 4 - endif diff --git a/examples/nxhello/nxhello.h b/examples/nxhello/nxhello.h index 44c461c8a..b0a3628ef 100644 --- a/examples/nxhello/nxhello.h +++ b/examples/nxhello/nxhello.h @@ -102,9 +102,6 @@ #ifndef CONFIG_EXAMPLES_NXHELLO_SERVERPRIO # define CONFIG_EXAMPLES_NXHELLO_SERVERPRIO 120 #endif -#ifndef CONFIG_EXAMPLES_NXHELLO_NOTIFYSIGNO -# define CONFIG_EXAMPLES_NXHELLO_NOTIFYSIGNO 4 -#endif /**************************************************************************** * Public Types diff --git a/examples/nximage/Kconfig b/examples/nximage/Kconfig index abc84fc60..2bd34af41 100644 --- a/examples/nximage/Kconfig +++ b/examples/nximage/Kconfig @@ -116,10 +116,4 @@ config EXAMPLES_NXIMAGE_LISTENERPRIO ---help--- The priority of the event listener thread. Default 80. -config EXAMPLES_NXIMAGE_NOTIFYSIGNO - int "Notify Signal Number" - default 4 - ---help--- - The signal number to use with nx_eventnotify(). Default: 4 - endif diff --git a/examples/nximage/nximage.h b/examples/nximage/nximage.h index 14c1ca0b0..a9fb4724d 100644 --- a/examples/nximage/nximage.h +++ b/examples/nximage/nximage.h @@ -111,9 +111,6 @@ #ifndef CONFIG_EXAMPLES_NXIMAGE_SERVERPRIO # define CONFIG_EXAMPLES_NXIMAGE_SERVERPRIO 120 #endif -#ifndef CONFIG_EXAMPLES_NXIMAGE_NOTIFYSIGNO -# define CONFIG_EXAMPLES_NXIMAGE_NOTIFYSIGNO 4 -#endif /* Image Information ********************************************************/ @@ -197,7 +194,8 @@ void nximage_image(NXWINDOW hwnd); /* Image interfaces */ nxgl_mxpixel_t nximage_bgcolor(void); -nxgl_mxpixel_t nximage_avgcolor(nxgl_mxpixel_t color1, nxgl_mxpixel_t color2); +nxgl_mxpixel_t nximage_avgcolor(nxgl_mxpixel_t color1, + nxgl_mxpixel_t color2); void nximage_blitrow(FAR nxgl_mxpixel_t *run, FAR const void **state); #endif /* __APPS_EXAMPLES_NXIMAGE_NXIMAGE_H */ diff --git a/examples/nxlines/Kconfig b/examples/nxlines/Kconfig index 7e44a868a..8646fc1dc 100644 --- a/examples/nxlines/Kconfig +++ b/examples/nxlines/Kconfig @@ -111,10 +111,4 @@ config EXAMPLES_NXLINES_LISTENERPRIO ---help--- The priority of the event listener thread. Default 80. -config EXAMPLES_NXLINES_NOTIFYSIGNO - int "Notify Signal Number" - default 4 - ---help--- - The signal number to use with nx_eventnotify(). Default: 4 - endif diff --git a/examples/nxlines/nxlines.h b/examples/nxlines/nxlines.h index de925494b..5e92ad312 100644 --- a/examples/nxlines/nxlines.h +++ b/examples/nxlines/nxlines.h @@ -120,9 +120,6 @@ #ifndef CONFIG_EXAMPLES_NXLINES_SERVERPRIO # define CONFIG_EXAMPLES_NXLINES_SERVERPRIO 120 #endif -#ifndef CONFIG_EXAMPLES_NXLINES_NOTIFYSIGNO -# define CONFIG_EXAMPLES_NXLINES_NOTIFYSIGNO 4 -#endif /**************************************************************************** * Public Types diff --git a/examples/nxscope/Kconfig b/examples/nxscope/Kconfig index 3634bf999..33cabeb61 100644 --- a/examples/nxscope/Kconfig +++ b/examples/nxscope/Kconfig @@ -74,7 +74,7 @@ config EXAMPLES_NXSCOPE_TIMER_PATH config EXAMPLES_NXSCOPE_TIMER_SIGNO int "nxscope notification signal number" - default 17 + default 32 config EXAMPLES_NXSCOPE_TIMER_INTERVAL int "nxscope timer interval (microseconds)" diff --git a/examples/nxterm/Kconfig b/examples/nxterm/Kconfig index 6ac118eea..b1cc3a7df 100644 --- a/examples/nxterm/Kconfig +++ b/examples/nxterm/Kconfig @@ -40,11 +40,6 @@ config EXAMPLES_NXTERM_SERVERPRIO int "Server priority" default 120 -config EXAMPLES_NXTERM_NOTIFYSIGNO - int "Notification signal" - default 4 - range 1 31 - config EXAMPLES_NXTERM_BPP int "Pixel width" default 16 diff --git a/examples/nxterm/nxterm_internal.h b/examples/nxterm/nxterm_internal.h index 1baf76ee3..d22188798 100644 --- a/examples/nxterm/nxterm_internal.h +++ b/examples/nxterm/nxterm_internal.h @@ -184,9 +184,6 @@ #ifndef CONFIG_EXAMPLES_NXTERM_SERVERPRIO # define CONFIG_EXAMPLES_NXTERM_SERVERPRIO 120 #endif -#ifndef CONFIG_EXAMPLES_NXTERM_NOTIFYSIGNO -# define CONFIG_EXAMPLES_NXTERM_NOTIFYSIGNO 4 -#endif /* NX Console Device */ diff --git a/examples/oneshot/Kconfig b/examples/oneshot/Kconfig index 88f2713d4..43cc117e1 100644 --- a/examples/oneshot/Kconfig +++ b/examples/oneshot/Kconfig @@ -28,7 +28,7 @@ config EXAMPLES_ONESHOT_DELAY config EXAMPLES_ONESHOT_SIGNO int "Signal number" - default 13 + default 32 ---help--- This is the number of the signal that will be used in the oneshot notification. diff --git a/examples/oneshot/oneshot_main.c b/examples/oneshot/oneshot_main.c index 2e0e5fe85..155b3e18e 100644 --- a/examples/oneshot/oneshot_main.c +++ b/examples/oneshot/oneshot_main.c @@ -49,7 +49,7 @@ #endif #ifndef CONFIG_EXAMPLES_ONESHOT_SIGNO -# define CONFIG_EXAMPLES_ONESHOT_SIGNO 13 +# define CONFIG_EXAMPLES_ONESHOT_SIGNO 32 #endif /* For long delays that have to be broken into segments, some loss of diff --git a/examples/timer/Kconfig b/examples/timer/Kconfig index bc61b7dfb..3a997ccab 100644 --- a/examples/timer/Kconfig +++ b/examples/timer/Kconfig @@ -38,7 +38,7 @@ config EXAMPLES_TIMER_NSAMPLES config EXAMPLES_TIMER_SIGNO int "Notification signal number" - default 17 + default 32 ---help--- This is the signal number that is used to notify the test of timer expiration events. diff --git a/examples/timer/timer_main.c b/examples/timer/timer_main.c index a7ffb07b5..193202a9b 100644 --- a/examples/timer/timer_main.c +++ b/examples/timer/timer_main.c @@ -58,7 +58,7 @@ #endif #ifndef CONFIG_EXAMPLES_TIMER_SIGNO -# define CONFIG_EXAMPLES_TIMER_SIGNO 17 +# define CONFIG_EXAMPLES_TIMER_SIGNO 32 #endif /**************************************************************************** diff --git a/examples/timer_gpio/Kconfig b/examples/timer_gpio/Kconfig index da80cb79e..17c31c12d 100644 --- a/examples/timer_gpio/Kconfig +++ b/examples/timer_gpio/Kconfig @@ -39,7 +39,7 @@ config EXAMPLES_TIMER_GPIO_INTERVAL config EXAMPLES_TIMER_GPIO_SIGNO int "Notification signal number" - default 17 + default 32 ---help--- This is the signal number that is used to notify that a timer interrupt occurred. diff --git a/examples/zerocross/Kconfig b/examples/zerocross/Kconfig index d5c1245b2..b49614731 100644 --- a/examples/zerocross/Kconfig +++ b/examples/zerocross/Kconfig @@ -18,6 +18,6 @@ config EXAMPLES_ZEROCROSS_DEVNAME config EXAMPLES_ZEROCROSS_SIGNO int "Zero Cross signal" - default 13 + default 32 endif diff --git a/examples/zerocross/zerocross_main.c b/examples/zerocross/zerocross_main.c index fd766cec0..0d9cb02bd 100644 --- a/examples/zerocross/zerocross_main.c +++ b/examples/zerocross/zerocross_main.c @@ -50,7 +50,7 @@ #endif #ifndef CONFIG_EXAMPLES_ZEROCROSS_SIGNO -# define CONFIG_EXAMPLES_ZEROCROSS_SIGNO 13 +# define CONFIG_EXAMPLES_ZEROCROSS_SIGNO 32 #endif /**************************************************************************** diff --git a/games/shift/shift_input_joystick.h b/games/shift/shift_input_joystick.h index 4a58217e6..2bd3a625c 100644 --- a/games/shift/shift_input_joystick.h +++ b/games/shift/shift_input_joystick.h @@ -33,7 +33,7 @@ ****************************************************************************/ #define DJOYSTICK_DEVNAME "/dev/djoy0" -#define DJOYSTICK_SIGNO 13 +#define DJOYSTICK_SIGNO 32 /* The set of supported joystick discretes */ diff --git a/graphics/nxwm/Kconfig b/graphics/nxwm/Kconfig index ab1018ce3..9f9e044c9 100644 --- a/graphics/nxwm/Kconfig +++ b/graphics/nxwm/Kconfig @@ -489,10 +489,10 @@ config NXWM_TOUCHSCREEN_DEVPATH config NXWM_TOUCHSCREEN_SIGNO int "Touchscreen Signal Number" - default 5 + default 32 ---help--- The realtime signal used to wake up the touchscreen listener - thread. Default: 5 + thread. Default: 32 config NXWM_TOUCHSCREEN_LISTENERPRIO int "Touchscreen Listener Task Priority" @@ -552,10 +552,10 @@ config NXWM_KEYBOARD_USBHOST config NXWM_KEYBOARD_SIGNO int "Keyboard Task Signal Number" - default 6 + default 33 ---help--- The realtime signal used to wake up the keyboard listener thread. - Default: 6 + Default: 33 config NXWM_KEYBOARD_BUFSIZE int "Keyboard Buffer Size" @@ -729,10 +729,10 @@ endif # NXWM_CUSTOM_CALIBRATION_ICON config NXWM_CALIBRATION_SIGNO int "Calibration Signal Number" - default 5 + default 32 ---help--- The realtime signal used to wake up the touchscreen calibration - thread. Default: 5 + thread. Default: 32 config NXWM_CALIBRATION_LISTENERPRIO int "Calibration Task Priority" diff --git a/include/graphics/nxwm/nxwmconfig.hxx b/include/graphics/nxwm/nxwmconfig.hxx index ac91fde7c..c5fa07f72 100644 --- a/include/graphics/nxwm/nxwmconfig.hxx +++ b/include/graphics/nxwm/nxwmconfig.hxx @@ -423,7 +423,7 @@ #endif #ifndef CONFIG_NXWM_TOUCHSCREEN_SIGNO -# define CONFIG_NXWM_TOUCHSCREEN_SIGNO 5 +# define CONFIG_NXWM_TOUCHSCREEN_SIGNO 32 #endif #ifndef CONFIG_NXWM_TOUCHSCREEN_LISTENERPRIO @@ -459,7 +459,7 @@ #endif #ifndef CONFIG_NXWM_KEYBOARD_SIGNO -# define CONFIG_NXWM_KEYBOARD_SIGNO 6 +# define CONFIG_NXWM_KEYBOARD_SIGNO 33 #endif #ifndef CONFIG_NXWM_KEYBOARD_BUFSIZE @@ -532,7 +532,7 @@ #endif #ifndef CONFIG_NXWM_CALIBRATION_SIGNO -# define CONFIG_NXWM_CALIBRATION_SIGNO 5 +# define CONFIG_NXWM_CALIBRATION_SIGNO 32 #endif #ifndef CONFIG_NXWM_CALIBRATION_LISTENERPRIO diff --git a/include/graphics/twm4nx/apps/calib_config.hxx b/include/graphics/twm4nx/apps/calib_config.hxx index d8d82eb9d..14f795fe8 100644 --- a/include/graphics/twm4nx/apps/calib_config.hxx +++ b/include/graphics/twm4nx/apps/calib_config.hxx @@ -114,7 +114,7 @@ #endif #ifndef CONFIG_TWM4NX_CALIBRATION_SIGNO -# define CONFIG_TWM4NX_CALIBRATION_SIGNO 5 +# define CONFIG_TWM4NX_CALIBRATION_SIGNO 32 #endif #ifndef CONFIG_TWM4NX_CALIBRATION_LISTENERPRIO diff --git a/include/graphics/twm4nx/twm4nx_config.hxx b/include/graphics/twm4nx/twm4nx_config.hxx index 7d113e68d..2d1849592 100644 --- a/include/graphics/twm4nx/twm4nx_config.hxx +++ b/include/graphics/twm4nx/twm4nx_config.hxx @@ -448,7 +448,7 @@ */ #ifndef CONFIG_TWM4NX_INPUT_SIGNO -# define CONFIG_TWM4NX_INPUT_SIGNO 6 +# define CONFIG_TWM4NX_INPUT_SIGNO 33 #endif #ifndef CONFIG_TWM4NX_INPUT_LISTENERPRIO diff --git a/include/netutils/netinit.h b/include/netutils/netinit.h index adb5ba256..b733ab3c0 100644 --- a/include/netutils/netinit.h +++ b/include/netutils/netinit.h @@ -69,7 +69,7 @@ #endif #ifndef CONFIG_NETINIT_SIGNO -# define CONFIG_NETINIT_SIGNO 18 +# define CONFIG_NETINIT_SIGNO 32 #endif #ifndef CONFIG_NETINIT_THREAD_STACKSIZE diff --git a/netutils/netinit/Kconfig b/netutils/netinit/Kconfig index 7539d6cdb..b0bda87a7 100644 --- a/netutils/netinit/Kconfig +++ b/netutils/netinit/Kconfig @@ -90,7 +90,7 @@ if NETINIT_MONITOR config NETINIT_SIGNO int "Notification signal number" - default 18 + default 32 ---help--- The network monitor logic will receive signals when there is any change in the link status. This setting may be used to customize diff --git a/testing/drivertest/drivertest_timer.c b/testing/drivertest/drivertest_timer.c index 676964b1e..be28814e6 100644 --- a/testing/drivertest/drivertest_timer.c +++ b/testing/drivertest/drivertest_timer.c @@ -48,7 +48,7 @@ #define TIMER_DEFAULT_DEVPATH "/dev/timer0" #define TIMER_DEFAULT_INTERVAL 1000000 #define TIMER_DEFAULT_NSAMPLES 20 -#define TIMER_DEFAULT_SIGNO 17 +#define TIMER_DEFAULT_SIGNO 32 #define TIMER_DEFAULT_RANGE 1 #define OPTARG_TO_VALUE(value, type, base) \