1""" 2Copyright (c) 2021 Zephyr Project members and individual contributors 3SPDX-License-Identifier: Apache-2.0 4 5This module contains a variable with a list of tuples (old_url, new_url) for 6pages to redirect. This list allows redirecting old URLs (caused by reorganizing 7doc directories) 8 9Notes: 10 - Please keep this list sorted alphabetically. 11 - URLs must be relative to document root (with NO leading slash), and 12 without the html extension). 13""" 14 15REDIRECTS = [ 16 # zephyr-keep-sorted-start 17 ('application/index', 'develop/application/index'), 18 ('boards/arduino/uno_r4_minima/doc/index', 'boards/arduino/uno_r4/doc/index'), 19 ('boards/phytec/mimx8mm_phyboard_polis/doc/index', 'boards/phytec/phyboard_polis/doc/index'), 20 ('boards/phytec/mimx8mp_phyboard_pollux/doc/index', 'boards/phytec/phyboard_pollux/doc/index'), 21 ('boards/rak/index', 'boards/rakwireless/index'), 22 ('boards/rak/rak11720/doc/index', 'boards/rakwireless/rak11720/doc/index'), 23 ('boards/rak/rak4631/doc/index', 'boards/rakwireless/rak4631/doc/index'), 24 ('boards/rak/rak5010/doc/index', 'boards/rakwireless/rak5010/doc/index'), 25 ('boards/x86/ehl_crb/doc/index', 'boards/x86/intel_ehl/doc/index'), 26 ('boards/x86/intel_ehl/doc/index', 'boards/intel/ehl/doc/index'), 27 ('boards/x86/intel_rpl/doc/index', 'boards/intel/rpl/doc/index'), 28 ('boards/x86/rpl_crb/doc/index', 'boards/x86/intel_rpl/doc/index'), 29 30 ('connectivity/bluetooth/api/audio/shell/bap', 'connectivity/bluetooth/shell/audio/bap'), 31 ('connectivity/bluetooth/api/audio/shell/bap_broadcast_assistant', 'connectivity/bluetooth/shell/audio/bap_broadcast_assistant'), 32 ('connectivity/bluetooth/api/audio/shell/bap_scan_delegator', 'connectivity/bluetooth/shell/audio/bap_scan_delegator'), 33 ('connectivity/bluetooth/api/audio/shell/cap', 'connectivity/bluetooth/shell/audio/cap'), 34 ('connectivity/bluetooth/api/audio/shell/ccp', 'connectivity/bluetooth/shell/audio/ccp'), 35 ('connectivity/bluetooth/api/audio/shell/csip', 'connectivity/bluetooth/shell/audio/csip'), 36 ('connectivity/bluetooth/api/audio/shell/gmap', 'connectivity/bluetooth/shell/audio/gmap'), 37 ('connectivity/bluetooth/api/audio/shell/mcp', 'connectivity/bluetooth/shell/audio/mcp'), 38 ('connectivity/bluetooth/api/audio/shell/pbp', 'connectivity/bluetooth/shell/audio/pbp'), 39 ('connectivity/bluetooth/api/audio/shell/tmap', 'connectivity/bluetooth/shell/audio/tmap'), 40 ('connectivity/bluetooth/api/shell/iso', 'connectivity/bluetooth/shell/host/iso'), 41 ('connectivity/bluetooth/audio', 'connectivity/bluetooth/api/audio/audio'), 42 ('connectivity/bluetooth/bap', 'connectivity/bluetooth/api/audio/bap'), 43 ('connectivity/bluetooth/bluetooth-audio-arch', 'connectivity/bluetooth/bluetooth-le-audio-arch'), 44 ('connectivity/bluetooth/bluetooth-le-audio-arch', 'connectivity/bluetooth/api/audio/bluetooth-le-audio-arch'), 45 ('connectivity/bluetooth/cap', 'connectivity/bluetooth/api/audio/cap'), 46 ('connectivity/bluetooth/coordinated_sets', 'connectivity/bluetooth/api/audio/coordinated_sets'), 47 ('connectivity/bluetooth/dis-pics', 'connectivity/bluetooth/bluetooth-qual'), 48 ('connectivity/bluetooth/gap-pics', 'connectivity/bluetooth/bluetooth-qual'), 49 ('connectivity/bluetooth/gatt-pics', 'connectivity/bluetooth/bluetooth-qual'), 50 ('connectivity/bluetooth/ics/dis', 'connectivity/bluetooth/bluetooth-qual'), 51 ('connectivity/bluetooth/ics/gap', 'connectivity/bluetooth/bluetooth-qual'), 52 ('connectivity/bluetooth/ics/gatt', 'connectivity/bluetooth/bluetooth-qual'), 53 ('connectivity/bluetooth/ics/l2cap', 'connectivity/bluetooth/bluetooth-qual'), 54 ('connectivity/bluetooth/ics/mesh', 'connectivity/bluetooth/bluetooth-qual'), 55 ('connectivity/bluetooth/ics/rfcomm', 'connectivity/bluetooth/bluetooth-qual'), 56 ('connectivity/bluetooth/ics/sm', 'connectivity/bluetooth/bluetooth-qual'), 57 ('connectivity/bluetooth/l2cap-pics', 'connectivity/bluetooth/bluetooth-qual'), 58 ('connectivity/bluetooth/media', 'connectivity/bluetooth/api/audio/media'), 59 ('connectivity/bluetooth/mesh-pics', 'connectivity/bluetooth/bluetooth-qual'), 60 ('connectivity/bluetooth/microphone', 'connectivity/bluetooth/api/audio/microphone'), 61 ('connectivity/bluetooth/overview', 'connectivity/bluetooth/features'), 62 ('connectivity/bluetooth/rfcomm-pics', 'connectivity/bluetooth/bluetooth-qual'), 63 ('connectivity/bluetooth/shell/bap', 'connectivity/bluetooth/api/audio/shell/bap'), 64 ('connectivity/bluetooth/shell/bap_broadcast_assistant', 'connectivity/bluetooth/api/audio/shell/bap_broadcast_assistant'), 65 ('connectivity/bluetooth/shell/bap_scan_delegator', 'connectivity/bluetooth/api/audio/shell/bap_scan_delegator'), 66 ('connectivity/bluetooth/shell/cap', 'connectivity/bluetooth/api/audio/shell/cap'), 67 ('connectivity/bluetooth/shell/ccp', 'connectivity/bluetooth/api/audio/shell/ccp'), 68 ('connectivity/bluetooth/shell/csip', 'connectivity/bluetooth/api/audio/shell/csip'), 69 ('connectivity/bluetooth/shell/gmap', 'connectivity/bluetooth/api/audio/shell/gmap'), 70 ('connectivity/bluetooth/shell/mcp', 'connectivity/bluetooth/api/audio/shell/mcp'), 71 ('connectivity/bluetooth/shell/pbp', 'connectivity/bluetooth/api/audio/shell/pbp'), 72 ('connectivity/bluetooth/shell/tmap', 'connectivity/bluetooth/api/audio/shell/tmap'), 73 ('connectivity/bluetooth/sm-pics', 'connectivity/bluetooth/bluetooth-qual'), 74 ('connectivity/bluetooth/volume', 'connectivity/bluetooth/api/audio/volume'), 75 ('connectivity/networking/networking-api-usage', 'connectivity/networking/api/index'), 76 ('development_process/code_flow', 'project/code_flow'), 77 ('development_process/index', 'project/index'), 78 ('development_process/issues', 'project/issues'), 79 ('development_process/proposals', 'project/proposals'), 80 ('getting_started/index', 'develop/getting_started/index'), 81 ('getting_started/toolchain_3rd_party_x_compilers', 'develop/toolchains/index'), 82 ('getting_started/toolchain_custom_cmake', 'develop/toolchains/custom_cmake'), 83 ('getting_started/toolchain_other_x_compilers', 'develop/toolchains/other_x_compilers'), 84 ('guides/arch/arm_cortex_m', 'hardware/arch/arm_cortex_m'), 85 ('guides/arch/index', 'hardware/arch/index'), 86 ('guides/arch/x86', 'hardware/arch/x86'), 87 ('guides/beyond-GSG', 'develop/beyond-GSG'), 88 ('guides/bluetooth/index', 'connectivity/bluetooth/index'), 89 ('guides/bluetooth/sm-pics', 'connectivity/bluetooth/bluetooth-qual'), 90 ('guides/build/index', 'build/cmake/index'), 91 ('guides/build/kconfig/extensions', 'build/kconfig/extensions'), 92 ('guides/build/kconfig/menuconfig', 'build/kconfig/menuconfig'), 93 ('guides/build/kconfig/preprocessor-functions', 'build/kconfig/preprocessor-functions'), 94 ('guides/build/kconfig/setting', 'build/kconfig/setting'), 95 ('guides/build/kconfig/tips', 'build/kconfig/tips'), 96 ('guides/coccinelle', 'develop/tools/coccinelle'), 97 ('guides/code-relocation', 'kernel/code-relocation'), 98 ('guides/crypto/index', 'services/crypto/index'), 99 ('guides/crypto/tinycrypt', 'services/crypto/tinycrypt'), 100 ('guides/device_mgmt/dfu', 'services/device_mgmt/dfu'), 101 ('guides/device_mgmt/index', 'services/device_mgmt/index'), 102 ('guides/device_mgmt/mcumgr', 'services/device_mgmt/mcumgr'), 103 ('guides/device_mgmt/ota', 'services/device_mgmt/ota'), 104 ('guides/dts/api-usage', 'build/dts/api-usage'), 105 ('guides/dts/bindings', 'build/dts/bindings'), 106 ('guides/dts/design', 'build/dts/design'), 107 ('guides/dts/dt-vs-kconfig', 'build/dts/dt-vs-kconfig'), 108 ('guides/dts/howtos', 'build/dts/howtos'), 109 ('guides/dts/index', 'build/dts/index'), 110 ('guides/dts/intro', 'build/dts/intro'), 111 ('guides/dts/troubleshooting', 'build/dts/troubleshooting'), 112 ('guides/emulator/index', 'hardware/emulator/index'), 113 ('guides/env_vars', 'develop/env_vars'), 114 ('guides/flash_debug/host-tools', 'develop/flash_debug/host-tools'), 115 ('guides/flash_debug/index', 'develop/flash_debug/index'), 116 ('guides/flash_debug/probes', 'develop/flash_debug/probes'), 117 ('guides/kconfig/extensions', 'build/kconfig/extensions'), 118 ('guides/kconfig/index', 'build/kconfig/index'), 119 ('guides/kconfig/menuconfig', 'build/kconfig/menuconfig'), 120 ('guides/kconfig/preprocessor-functions', 'build/kconfig/preprocessor-functions'), 121 ('guides/kconfig/setting', 'build/kconfig/setting'), 122 ('guides/kconfig/tips', 'build/kconfig/tips'), 123 ('guides/modules', 'develop/modules'), 124 ('guides/networking/index', 'connectivity/networking/index'), 125 ('guides/optimizations/index', 'develop/optimizations/index'), 126 ('guides/optimizations/tools', 'develop/optimizations/tools'), 127 ('guides/pinctrl/index', 'hardware/pinctrl/index'), 128 ('guides/platformio/index', 'develop/tools/index'), 129 ('guides/pm/device', 'services/pm/device'), 130 ('guides/pm/device_runtime', 'services/pm/device_runtime'), 131 ('guides/pm/index', 'services/pm/index'), 132 ('guides/pm/overview', 'services/pm/overview'), 133 ('guides/pm/power_domain', 'services/pm/power_domain'), 134 ('guides/pm/system', 'services/pm/system'), 135 ('guides/portability/index', 'services/portability/index'), 136 ('guides/porting/arch', 'hardware/porting/arch'), 137 ('guides/porting/board_porting', 'hardware/porting/board_porting'), 138 ('guides/porting/index', 'hardware/porting/index'), 139 ('guides/porting/shields', 'hardware/porting/shields'), 140 ('guides/smf/index', 'services/smf/index'), 141 ('guides/test/coverage', 'develop/test/coverage'), 142 ('guides/test/index', 'develop/test/index'), 143 ('guides/test/twister', 'develop/test/twister'), 144 ('guides/test/ztest', 'develop/test/ztest'), 145 ('guides/tfm/build', 'services/tfm/build'), 146 ('guides/tfm/index', 'services/tfm/index'), 147 ('guides/tfm/integration', 'services/tfm/integration'), 148 ('guides/tfm/overview', 'services/tfm/overview'), 149 ('guides/tfm/requirements', 'services/tfm/requirements'), 150 ('guides/tfm/testsuites', 'services/tfm/testsuites'), 151 ('guides/west/basics', 'develop/west/basics'), 152 ('guides/west/build-flash-debug', 'develop/west/build-flash-debug'), 153 ('guides/west/built-in', 'develop/west/built-in'), 154 ('guides/west/config', 'develop/west/config'), 155 ('guides/west/extensions', 'develop/west/extensions'), 156 ('guides/west/index', 'develop/west/index'), 157 ('guides/west/install', 'develop/west/install'), 158 ('guides/west/manifest', 'develop/west/manifest'), 159 ('guides/west/moving-to-west', 'develop/west/moving-to-west'), 160 ('guides/west/release-notes', 'develop/west/release-notes'), 161 ('guides/west/sign', 'develop/west/sign'), 162 ('guides/west/troubleshooting', 'develop/west/troubleshooting'), 163 ('guides/west/west-apis', 'develop/west/west-apis'), 164 ('guides/west/why', 'develop/west/why'), 165 ('guides/west/without-west', 'develop/west/without-west'), 166 ('guides/west/workspaces', 'develop/west/workspaces'), 167 ('guides/west/zephyr-cmds', 'develop/west/zephyr-cmds'), 168 ('guides/zephyr_cmake_package', 'build/zephyr_cmake_package'), 169 ('hardware/peripherals/eeprom', 'hardware/peripherals/eeprom/index'), 170 ('hardware/peripherals/sensor', 'hardware/peripherals/sensor/index'), 171 ('kernel/libc/index', 'develop/languages/c/index'), 172 ('reference/api/api_lifecycle', 'develop/api/api_lifecycle'), 173 ('reference/api/index', 'develop/api/index'), 174 ('reference/api/overview', 'develop/api/overview'), 175 ('reference/api/terminology', 'develop/api/terminology'), 176 ('reference/drivers/index', 'kernel/drivers/index'), 177 ('reference/file_system/index', 'services/file_system/index'), 178 ('reference/libc/index', 'kernel/libc/index'), 179 ('reference/logging/index', 'services/logging/index'), 180 ('reference/misc/notify', 'services/notify'), 181 ('reference/misc/timeutil', 'kernel/timeutil'), 182 ('reference/modbus/index', 'services/modbus/index'), 183 ('reference/networking/sockets', 'connectivity/networking/api/sockets'), 184 ('reference/peripherals/adc', 'hardware/peripherals/adc'), 185 ('reference/peripherals/dac', 'hardware/peripherals/dac'), 186 ('reference/peripherals/dma', 'hardware/peripherals/dma'), 187 ('reference/peripherals/eeprom', 'hardware/peripherals/eeprom/index'), 188 ('reference/peripherals/espi', 'hardware/peripherals/espi'), 189 ('reference/peripherals/flash', 'hardware/peripherals/flash'), 190 ('reference/peripherals/gna', 'hardware/peripherals/index'), 191 ('reference/peripherals/gpio', 'hardware/peripherals/gpio'), 192 ('reference/peripherals/hwinfo', 'hardware/peripherals/hwinfo'), 193 ('reference/peripherals/i2c', 'hardware/peripherals/i2c'), 194 ('reference/peripherals/index', 'hardware/peripherals/index'), 195 ('reference/peripherals/ipm', 'hardware/peripherals/ipm'), 196 ('reference/peripherals/kscan', 'hardware/peripherals/kscan'), 197 ('reference/peripherals/led', 'hardware/peripherals/led'), 198 ('reference/peripherals/mbox', 'hardware/peripherals/mbox'), 199 ('reference/peripherals/mdio', 'hardware/peripherals/mdio'), 200 ('reference/peripherals/mspi', 'hardware/peripherals/mspi'), 201 ('reference/peripherals/peci', 'hardware/peripherals/peci'), 202 ('reference/peripherals/pinmux', 'hardware/pinctrl/index'), 203 ('reference/peripherals/ps2', 'hardware/peripherals/ps2'), 204 ('reference/peripherals/pwm', 'hardware/peripherals/pwm'), 205 ('reference/peripherals/reset', 'hardware/peripherals/reset'), 206 ('reference/peripherals/rtc', 'hardware/peripherals/rtc'), 207 ('reference/peripherals/sensor', 'hardware/peripherals/sensor/index'), 208 ('reference/peripherals/spi', 'hardware/peripherals/spi'), 209 ('reference/peripherals/tcpc', 'hardware/peripherals/tcpc'), 210 ('reference/peripherals/uart', 'hardware/peripherals/uart'), 211 ('reference/peripherals/video', 'hardware/peripherals/video'), 212 ('reference/pm/index', 'services/pm/api/index'), 213 ('reference/settings/index', 'services/settings/index'), 214 ('reference/shell/index', 'services/shell/index'), 215 ('reference/storage/fcb/fcb', 'services/storage/fcb/fcb'), 216 ('reference/storage/index', 'services/storage/index'), 217 ('reference/storage/nvs/nvs', 'services/storage/nvs/nvs'), 218 ('reference/task_wdt/index', 'services/task_wdt/index'), 219 ('reference/usb/hid', 'connectivity/usb/device/api/usb_device_hid'), 220 ('reference/usb/index', 'connectivity/usb/device/usb_device'), 221 ('reference/usb/udc', 'connectivity/usb/device/api/usb_dc'), 222 ('reference/usb/uds', 'connectivity/usb/device/usb_device'), 223 ('reference/usb/uds_cdc_acm', 'connectivity/usb/device/usb_device'), 224 ('reference/usb/uds_testing', 'connectivity/usb/device/usb_device'), 225 ('reference/usermode/index', 'kernel/usermode/index'), 226 ('reference/usermode/overview', 'kernel/usermode/overview'), 227 ('reference/usermode/syscalls', 'kernel/usermode/syscalls'), 228 ('reference/util/index', 'kernel/util/index'), 229 ('samples/application_development/with_mcuboot/README', 'samples/sysbuild/with_mcuboot/README'), 230 ('samples/bluetooth/broadcast_audio_assistant/README', 'samples/bluetooth/bap_broadcast_assistant/README'), 231 ('samples/bluetooth/broadcast_audio_sink/README', 'samples/bluetooth/bap_broadcast_sink/README'), 232 ('samples/bluetooth/broadcast_audio_source/README', 'samples/bluetooth/bap_broadcast_source/README'), 233 ('samples/bluetooth/central_iso/README', 'samples/bluetooth/iso_central/README'), 234 ('samples/bluetooth/peripheral_iso/README', 'samples/bluetooth/iso_peripheral/README'), 235 ('samples/bluetooth/public_broadcast_sink/README', 'samples/bluetooth/pbp_public_broadcast_sink/README'), 236 ('samples/bluetooth/public_broadcast_source/README', 'samples/bluetooth/pbp_public_broadcast_source/README'), 237 ('samples/bluetooth/unicast_audio_client/README', 'samples/bluetooth/bap_unicast_client/README'), 238 ('samples/bluetooth/unicast_audio_server/README', 'samples/bluetooth/bap_unicast_server/README'), 239 ('samples/boards/96b_argonkey/microphone/README', 'samples/boards/96boards/argonkey/microphone/README'), 240 ('samples/boards/96b_argonkey/sensors/README', 'samples/boards/96boards/argonkey/sensors/README'), 241 ('samples/boards/esp32/deep_sleep/README', 'samples/boards/espressif/deep_sleep/README'), 242 ('samples/boards/esp32/flash_encryption/README', 'samples/boards/espressif/flash_encryption/README'), 243 ('samples/boards/esp32/flash_memory_mapped/README', 'samples/boards/espressif/flash_memory_mapped/README'), 244 ('samples/boards/esp32/light_sleep/README', 'samples/boards/espressif/light_sleep/README'), 245 ('samples/boards/esp32/spiram_test/README', 'samples/boards/espressif/spiram_test/README'), 246 ('samples/boards/esp32/wifi_apsta_mode/README', 'samples/net/wifi/apsta_mode/README'), 247 ('samples/boards/esp32/xt_wdt/README', 'samples/boards/espressif/xt_wdt/README'), 248 ('samples/boards/espressif/wifi_apsta_mode/README', 'samples/net/wifi/apsta_mode/README'), 249 ('samples/boards/google_twinkie_v2_pda/README', 'samples/boards/google/twinkie_v2/pda/README'), 250 ('samples/boards/intel_adsp/code_relocation/README', 'samples/boards/intel/adsp/code_relocation/README'), 251 ('samples/boards/litex/i2s/README', 'samples/boards/enjoydigital/litex/i2s/README'), 252 ('samples/boards/mec15xxevb_assy6853/power_management/README', 'samples/boards/microchip/mec15xxevb_assy6853/power_management/README'), 253 ('samples/boards/mimxrt1060_evk/system_off/README', 'samples/boards/nxp/mimxrt1060_evk/system_off/README'), 254 ('samples/boards/mimxrt1170_evk_cm7/magic_addr/README', 'samples/boards/nxp/mimxrt1170_evk_cm7/magic_addr/README'), 255 ('samples/boards/mimxrt595_evk/system_off/README', 'samples/boards/nxp/mimxrt595_evk/system_off/README'), 256 ('samples/boards/nrf/battery/README', 'samples/boards/nordic/battery/README'), 257 ('samples/boards/nrf/clock_skew/README', 'samples/boards/nordic/clock_skew/README'), 258 ('samples/boards/nrf/dynamic_pinctrl/README', 'samples/boards/nordic/dynamic_pinctrl/README'), 259 ('samples/boards/nrf/ieee802154/802154_rpmsg/README', 'samples/boards/nordic/ieee802154/802154_rpmsg/README'), 260 ('samples/boards/nrf/mesh/onoff-app/README', 'samples/boards/nordic/mesh/onoff-app/README'), 261 ('samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/README', 'samples/boards/nordic/mesh/onoff_level_lighting_vnd_app/README'), 262 ('samples/boards/nrf/nrf53_sync_rtc/README', 'samples/boards/nordic/nrf53_sync_rtc/README'), 263 ('samples/boards/nrf/nrf_led_matrix/README', 'samples/boards/nordic/nrf_led_matrix/README'), 264 ('samples/boards/nrf/nrfx/README', 'samples/boards/nordic/nrfx/README'), 265 ('samples/boards/nrf/nrfx_prs/README', 'samples/boards/nordic/nrfx_prs/README'), 266 ('samples/boards/nrf/system_off/README', 'samples/boards/nordic/system_off/README'), 267 ('samples/boards/nxp_s32/netc/README', 'samples/boards/nxp/s32/netc/README'), 268 ('samples/boards/qomu/README', 'samples/boards/quicklogic/qomu/README'), 269 ('samples/boards/stm32/backup_sram/README', 'samples/boards/st/backup_sram/README'), 270 ('samples/boards/stm32/bluetooth/interactive_gui/README', 'samples/boards/st/bluetooth/interactive_gui/README'), 271 ('samples/boards/stm32/ccm/README', 'samples/boards/st/ccm/README'), 272 ('samples/boards/stm32/h7_dual_core/README', 'samples/boards/st/h7_dual_core/README'), 273 ('samples/boards/stm32/i2c_timing/README', 'samples/boards/st/i2c_timing/README'), 274 ('samples/boards/stm32/mco/README', 'samples/boards/st/mco/README'), 275 ('samples/boards/stm32/power_mgmt/adc/README', 'samples/boards/st/power_mgmt/adc/README'), 276 ('samples/boards/stm32/power_mgmt/blinky/README', 'samples/boards/st/power_mgmt/blinky/README'), 277 ('samples/boards/stm32/power_mgmt/serial_wakeup/README', 'samples/boards/st/power_mgmt/serial_wakeup/README'), 278 ('samples/boards/stm32/power_mgmt/standby_shutdown/README', 'samples/boards/st/power_mgmt/standby_shutdown/README'), 279 ('samples/boards/stm32/power_mgmt/stm32wb_ble/README', 'samples/boards/st/power_mgmt/stm32wb_ble/README'), 280 ('samples/boards/stm32/power_mgmt/stop3/README', 'samples/boards/st/power_mgmt/stop3/README'), 281 ('samples/boards/stm32/power_mgmt/suspend_to_ram/README', 'samples/boards/st/power_mgmt/suspend_to_ram/README'), 282 ('samples/boards/stm32/power_mgmt/wkup_pins/README', 'samples/boards/st/power_mgmt/wkup_pins/README'), 283 ('samples/boards/stm32/sensortile_box/README', 'samples/boards/st/sensortile_box/README'), 284 ('samples/boards/stm32/sensortile_box_pro/sensors-on-board/README', 'samples/boards/st/sensortile_box_pro/sensors-on-board/README'), 285 ('samples/boards/stm32/steval_stwinbx1/sensors/README', 'samples/boards/st/steval_stwinbx1/sensors/README'), 286 ('samples/drivers/adc/README', 'samples/drivers/adc/adc_dt/README'), 287 ('samples/drivers/kscan_touch', 'samples/subsys/input/input'), 288 ('samples/drivers/led_apa102/README', 'samples/drivers/led_strip/README'), 289 ('samples/drivers/led_is31fl3194/README', 'samples/drivers/led/is31fl3194/README'), 290 ('samples/drivers/led_is31fl3216a/README', 'samples/drivers/led/is31fl3216a/README'), 291 ('samples/drivers/led_is31fl3733/README', 'samples/drivers/led/is31fl3733/README'), 292 ('samples/drivers/led_lp3943/README', 'samples/drivers/led/lp3943/README'), 293 ('samples/drivers/led_lp50xx/README', 'samples/drivers/led/lp50xx/README'), 294 ('samples/drivers/led_lp5562/README', 'samples/drivers/led/lp5562/README'), 295 ('samples/drivers/led_lp5569/README', 'samples/drivers/led/lp5569/README'), 296 ('samples/drivers/led_lpd8806/README', 'samples/drivers/led_strip/README'), 297 ('samples/drivers/led_pca9633/README', 'samples/drivers/led/pca9633/README'), 298 ('samples/drivers/led_pwm/README', 'samples/drivers/led/pwm/README'), 299 ('samples/drivers/led_strip/README', 'samples/drivers/led/led_strip/README'), 300 ('samples/drivers/led_sx1509b_intensity/README', 'samples/drivers/led/sx1509b_intensity/README'), 301 ('samples/drivers/led_ws2812/README', 'samples/drivers/led_strip/README'), 302 ('samples/drivers/led_xec/README', 'samples/drivers/led/xec/README'), 303 ('samples/net/cloud/google_iot_mqtt/README', 'samples/net/net'), 304 ('samples/sensor/wsen_hids/README', 'samples/sensor/sensor'), 305 ('samples/sensor/wsen_itds/README', 'samples/sensor/sensor'), 306 ('samples/subsys/video/capture/README', 'samples/drivers/video/capture/README'), 307 ('samples/subsys/video/tcpserversink/README', 'samples/drivers/video/tcpserversink/README'), 308 ('samples/subsys/video/video', 'samples/drivers/video/video'), 309 ('services/crypto/tinycrypt', 'services/crypto/psa_crypto'), 310 ('services/portability/posix', 'services/portability/posix/index'), 311 # zephyr-keep-sorted-stop 312] 313