Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 | # STM32CUBE HAL config # Copyright (c) 2016 Linaro Limited. # SPDX-License-Identifier: Apache-2.0 config HAS_STM32LIB bool config HAS_STM32CUBE bool select HAS_CMSIS_CORE depends on SOC_FAMILY_STM32 if HAS_STM32CUBE config USE_STM32_HAL_ADC bool help Enable STM32Cube Analog-to-Digital Converter (ADC) HAL module driver config USE_STM32_HAL_ADC_EX bool help Enable STM32Cube Extended Analog-to-Digital Converter (ADC) HAL module driver config USE_STM32_HAL_CAN bool help Enable STM32Cube Controller Area Network (CAN) HAL module driver config USE_STM32_HAL_CEC bool help Enable STM32Cube HDMI-CEC controller (CEC) HAL module driver config USE_STM32_HAL_COMP bool help Enable STM32Cube Ultra Low Power Comparator channels (COMP) HAL module driver config USE_STM32_HAL_CORTEX bool help Enable STM32Cube CORTEX HAL module driver config USE_STM32_HAL_CRC bool help Enable STM32Cube Cyclic redundancy check calculation unit (CRC) HAL module driver config USE_STM32_HAL_CRC_EX bool help Enable STM32Cube Extended Cyclic redundancy check calculation unit (CRC) HAL module driver config USE_STM32_HAL_CRYP bool help Enable STM32Cube Cryptographic processor (CRYP) HAL module driver config USE_STM32_HAL_CRYP_EX bool help Enable STM32Cube Extended Cryptographic processor (CRYP) HAL module driver config USE_STM32_HAL_DAC bool help Enable STM32Cube Digital-to-analog converter (DAC) HAL module driver config USE_STM32_HAL_DAC_EX bool help Enable STM32Cube Extended Digital-to-analog converter (DAC) HAL module driver config USE_STM32_HAL_DCMI bool help Enable STM32Cube Digital camera interface (DCM) HAL module driver config USE_STM32_HAL_DCMI_EX bool help Enable STM32Cube Extended Digital camera interface (DCM) HAL module driver config USE_STM32_HAL_DFSDM bool help Enable STM32Cube Digital filter for sigma delta modulators (DFSDM) HAL module driver config USE_STM32_HAL_DFSDM_EX bool help Enable STM32Cube Extended Digital filter for sigma delta modulators (DFSDM) HAL module driver config USE_STM32_HAL_DMA bool help Enable STM32Cube Direct Memory Access controller (DMA) HAL module driver config USE_STM32_HAL_DMA2D bool help Enable STM32Cube Chrom-Art Acceleratorâ„¢ controller (DMA2D) HAL module driver config USE_STM32_HAL_DMA_EX bool help Enable STM32Cube Extended Direct Memory Access controller (DMA) HAL module driver config USE_STM32_HAL_DSI bool help Enable STM32Cube Display Serial Interface Host (DSI) HAL module driver config USE_STM32_HAL_ETH bool help Enable STM32Cube Ethernet (ETH) HAL module driver config USE_STM32_HAL_ETH_EX bool help Enable STM32Cube Extended Ethernet (ETH) HAL module driver config USE_STM32_HAL_EXTI bool help Enable STM32Cube Extended interrupt and event controller (EXTI) HAL module driver config USE_STM32_HAL_FDCAN bool help Enable STM32Cube Controller area network with flexible data rate (FDCAN) HAL module driver config USE_STM32_HAL_FIREWALL bool help Enable STM32Cube Firewall HAL module driver config USE_STM32_HAL_FLASH bool help Enable STM32Cube Embedded Flash Memory (FLASH) HAL module driver config USE_STM32_HAL_FLASH_EX bool help Enable STM32Cube Extended Embedded Flash Memory (FLASH) HAL module driver config USE_STM32_HAL_FLASH_RAMFUNC bool help Enable STM32Cube Embedded Flash Memory RAM functions (FLASH_RAMFUNC) HAL module driver config USE_STM32_HAL_FMAC bool help Enable STM32Cube Filter Math Accelerator (FMAC) HAL module driver config USE_STM32_HAL_FMPI2C bool help Enable STM32Cube Fast-mode Plus Inter-integrated circuit (FMPI2C) HAL module driver config USE_STM32_HAL_FMPI2C_EX bool help Enable STM32Cube Extended Fast-mode Plus Inter-integrated circuit (FMPI2C) HAL module driver config USE_STM32_HAL_GFXMMU bool help Enable STM32Cube Chrom-GRCTM (GFXMMU) HAL module driver config USE_STM32_HAL_GPIO bool help Enable STM32Cube General-purpose I/Os (GPIO) HAL module driver config USE_STM32_HAL_GPIO_EX bool help Enable STM32Cube Extended General-purpose I/Os (GPIO) HAL module driver config USE_STM32_HAL_HASH bool help Enable STM32Cube Hash processor (HASH) HAL module driver config USE_STM32_HAL_HASH_EX bool help Enable STM32Cube Extended Hash processor (HASH) HAL module driver config USE_STM32_HAL_HCD bool help Enable STM32Cube Host Controller device (HCD) HAL module driver config USE_STM32_HAL_HRTIM bool help Enable STM32Cube High-Resolution Timer (HRTIM) HAL module driver config USE_STM32_HAL_HSEM bool help Enable STM32Cube Hardware Semaphore (HSEM) HAL module driver config USE_STM32_HAL_I2C bool help Enable STM32Cube Inter-integrated circuit (I2C) interface HAL module driver config USE_STM32_HAL_I2C_EX bool help Enable STM32Cube Extended Inter-integrated circuit (I2C) interface HAL module driver config USE_STM32_HAL_I2S bool help Enable STM32Cube Inter-IC sound (I2S) HAL module driver config USE_STM32_HAL_I2S_EX bool help Enable STM32Cube Etxended Inter-IC sound (I2S) HAL module driver config USE_STM32_HAL_IPCC bool help Enable STM32Cube Inter-Processor communication controller (IPCC) HAL module driver config USE_STM32_HAL_IRDA bool help Enable STM32Cube Infrared Data Association (IRDA) HAL module driver config USE_STM32_HAL_IWDG bool help Enable STM32Cube Independent watchdog (IWDG) HAL module driver config USE_STM32_HAL_JPEG bool help Enable STM32Cube Jpeg codec (JPEG) HAL module driver config USE_STM32_HAL_LCD bool help Enable STM32Cube LCD controller (LCD) HAL module driver config USE_STM32_HAL_LPTIM bool help Enable STM32Cube Low Power Timer (LPTIM) HAL module driver config USE_STM32_HAL_LTDC bool help Enable STM32Cube LCD-TFT controller (LTDC) HAL module driver config USE_STM32_HAL_LTDC_EX bool help Enable STM32Cube Extended LCD-TFT controller (LTDC) HAL module driver config USE_STM32_HAL_MDIOS bool help Enable STM32Cube Management data input/output (MDIOS) HAL module driver config USE_STM32_HAL_MDMA bool help Enable STM32Cube Master Direct Memory Access controller (MDMA) HAL module driver config USE_STM32_HAL_MMC bool help Enable STM32Cube MultiMediaCard interface (SDMMC) HAL module driver config USE_STM32_HAL_MMC_EX bool help Enable STM32Cube Extended MultiMediaCard interface (SDMMC) HAL module driver config USE_STM32_HAL_NAND bool help Enable STM32Cube NAND Controller (NAND) HAL module driver config USE_STM32_HAL_NOR bool help Enable STM32Cube NOR Controller (NOR) HAL module driver config USE_STM32_HAL_OPAMP bool help Enable STM32Cube Operational amplifiers (OPAMP) HAL module driver config USE_STM32_HAL_OPAMP_EX bool help Enable STM32Cube Extended Operational amplifiers (OPAMP) HAL module driver config USE_STM32_HAL_OSPI bool help Enable STM32Cube Octo-SPI interface (OSPI) HAL module driver config USE_STM32_HAL_PCCARD bool help Enable STM32Cube PCCard memories (PCCARD) HAL module driver config USE_STM32_HAL_PCD bool help Enable STM32Cube USB Peripheral Controller (PCD) HAL module driver config USE_STM32_HAL_PCD_EX bool help Enable STM32Cube Extended USB Peripheral Controller (PCD) HAL module driver config USE_STM32_HAL_PSSI bool help Enable STM32Cube Parallel Synchronous Slave Interface (PSSI) HAL module driver config USE_STM32_HAL_PWR bool help Enable STM32Cube Power control (PWR) HAL module driver config USE_STM32_HAL_PWR_EX bool help Enable STM32Cube Extended Power control (PWR) HAL module driver config USE_STM32_HAL_QSPI bool help Enable STM32Cube Quad-SPI interface (QSPI) HAL module driver config USE_STM32_HAL_RAMECC bool help Enable STM32Cube RAM ECC monitoring (RAMECC) HAL module driver config USE_STM32_HAL_RNG bool help Enable STM32Cube True random number generator (RNG) HAL module driver config USE_STM32_HAL_RTC bool help Enable STM32Cube Real-time clock (RTC) HAL module driver config USE_STM32_HAL_RTC_EX bool help Enable STM32Cube Extended Real-time clock (RTC) HAL module driver config USE_STM32_HAL_SAI bool help Enable STM32Cube Serial audio interface (SAI) HAL module driver config USE_STM32_HAL_SAI_EX bool help Enable STM32Cube Extended Serial audio interface (SAI) HAL module driver config USE_STM32_HAL_SD bool help Enable STM32Cube Secure digital input/output MultiMediaCard interface (SDMMC) HAL module driver config USE_STM32_HAL_SD_EX bool help Enable STM32Cube Extended Secure digital input/output MultiMediaCard interface (SDMMC) HAL module driver config USE_STM32_HAL_SDADC bool help Enable STM32Cube SDADC HAL module driver config USE_STM32_HAL_SDRAM bool help Enable STM32Cube SDRAM controller (SDRAM) HAL module driver config USE_STM32_HAL_SMARTCARD bool help Enable STM32Cube Smartcard controller (SMARTCARD) HAL module driver config USE_STM32_HAL_SMARTCARD_EX bool help Enable STM32Cube Extended Smartcard controller (SMARTCARD) HAL module driver config USE_STM32_HAL_SMBUS bool help Enable STM32Cube System Management Bus (SMBus) HAL module driver config USE_STM32_HAL_SPDIFRX bool help Enable STM32Cube SPDIF receiver interface (SPDIFRX) HAL module driver config USE_STM32_HAL_SPI bool help Enable STM32Cube Serial peripheral interface (SPI) HAL module driver config USE_STM32_HAL_SPI_EX bool help Enable STM32Cube Extended Serial peripheral interface (SPI) HAL module driver config USE_STM32_HAL_SRAM bool help Enable STM32Cube SRAM controller (SRAM) HAL module driver config USE_STM32_HAL_SWPMI bool help Enable STM32Cube Single Wire Protocol Master Interface (SWPMI) HAL module config USE_STM32_HAL_TIM bool help Enable STM32Cube Timer (TIM) HAL module driver config USE_STM32_HAL_TIM_EX bool help Enable STM32Cube Extended Timer (TIM) HAL module driver config USE_STM32_HAL_TSC bool help Enable STM32Cube Touch sensing controller (TSC) HAL module driver config USE_STM32_HAL_UART bool help Enable STM32Cube Universal asynchronous receiver transmitter (USART) HAL module driver config USE_STM32_HAL_UART_EX bool help Enable STM32Cube Extended Universal asynchronous receiver transmitter (USART) HAL module driver config USE_STM32_HAL_USART bool help Enable STM32Cube Universal synchronous asynchronous receiver transmitter (USART) HAL module driver config USE_STM32_HAL_USART_EX bool help Enable STM32Cube Extended Universal synchronous asynchronous receiver transmitter (USART) HAL module driver config USE_STM32_HAL_WWDG bool help Enable STM32Cube System window watchdog (WWDG) HAL module driver config USE_STM32_LL_ADC bool help Enable STM32Cube Analog-to-Digital Converter (ADC) LL module driver config USE_STM32_LL_BDMA bool help Enable STM32Cube Basic direct memory access controller (BDMA) LL module driver config USE_STM32_LL_COMP bool help Enable STM32Cube Ultra Low Power Comparator channels (COMP) LL module driver config USE_STM32_LL_CRC bool help Enable STM32Cube Cyclic redundancy check calculation unit (CRC) LL module driver config USE_STM32_LL_CRS bool help Enable STM32Cube Clock recovery system (CRS) LL module driver config USE_STM32_LL_DAC bool help Enable STM32Cube Digital-to-analog converter (DAC) LL module driver config USE_STM32_LL_DELAYBLOCK bool help Enable STM32Cube DelayBlock (DELAYBLOCK) LL module driver config USE_STM32_LL_DMA bool help Enable STM32Cube Direct Memory Access controller (DMA) LL module driver config USE_STM32_LL_DMA2D bool help Enable STM32Cube Chrom-Art Acceleratorâ„¢ controller (DMA2D) LL module driver config USE_STM32_LL_EXTI bool help Enable STM32Cube Extended interrupt and event controller (EXTI) LL module driver config USE_STM32_LL_FMAC bool help Enable STM32Cube Filter Math Accelerator (FMAC) LL module driver config USE_STM32_LL_FMC bool help Enable STM32Cube Flexible memory controller (FMC) LL module driver config USE_STM32_LL_FSMC bool help Enable STM32Cube Flexible static memory controller (FSMC) LL module driver config USE_STM32_LL_GPIO bool help Enable STM32Cube Extended General-purpose I/Os (GPIO) LL module driver config USE_STM32_LL_HRTIM bool help Enable STM32Cube High-Resolution Timer (HRTIM) LL module driver config USE_STM32_LL_I2C bool help Enable STM32Cube Inter-integrated circuit (I2C) interface LL module driver config USE_STM32_LL_IPCC bool help Enable STM32Cube Inter-Processor communication controller (IPCC) LL module driver config USE_STM32_LL_LPTIM bool help Enable STM32Cube Low Power Timer (LPTIM) LL module driver config USE_STM32_LL_LPUART bool help Enable STM32Cube Low-power universal asynchronous receiver transmitter (LPUART) LL module driver config USE_STM32_LL_MDMA bool help Enable STM32Cube Master Direct Memory Access controller (MDMA) LL module driver config USE_STM32_LL_OPAMP bool help Enable STM32Cube Operational amplifiers (OPAMP) LL module driver config USE_STM32_LL_PWR bool help Enable STM32Cube Power control (PWR) LL module driver config USE_STM32_LL_RCC bool help Enable STM32Cube Reset and Clock Control (RCC) LL module driver config USE_STM32_LL_RNG bool help Enable STM32Cube True random number generator (RNG) LL module driver config USE_STM32_LL_RTC bool help Enable STM32Cube Real-time clock (RTC) LL module driver config USE_STM32_LL_SDMMC bool help Enable STM32Cube SD/SDIO/MMC card host interface (SDMMC) LL module driver config USE_STM32_LL_SPI bool help Enable STM32Cube Serial peripheral interface (SPI) LL module driver config USE_STM32_LL_SWPMI bool help Enable STM32Cube Single Wire Protocol Master Interface (SWPMI) LL module driver config USE_STM32_LL_TIM bool help Enable STM32Cube Timer (TIM) LL module driver config USE_STM32_LL_USART bool help Enable STM32Cube Universal synchronous asynchronous receiver transmitter (USART) LL module driver config USE_STM32_LL_USB bool help Enable STM32Cube Universal serial bus full-speed device interface (USB) LL module driver config USE_STM32_LL_UTILS bool help Enable STM32Cube Utility functions (UTILS) LL module driver endif # HAS_STM32CUBE |