Flux Library Search


Search the Flux library (fulltext) for "1uF" with filters part_type Capacitors and part_sub_type Ceramic, 5 hits per page. Tell me the total hits reported and list the 5 part names with manufacturer. Also tell me if the tool reported any error.
Total hits: 201
  1. 1uF 0603 Capacitor — Murata
  2. CL10A105KB8NNNC — Samsung
  3. KGM03CR51A105MH — KYOCERA
  4. TMK105AC6105KV-F — Taiyo Yuden
  5. GRM155C81A105KA12D — Murata
Tool error: None reported.

Firmware Getting Started
Minimal ESP-IDF starter for the ESP32-S3. No peripheral GPIOs are assigned.
Pin mapping
No GPIOs are assigned in this prototype.
Toolchain
Install ESP-IDF, then create the files below and build with:

Sh


idf.py set-target esp32s3
idf.py build
CMakeLists.txt

Cmake


cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(esp32_s3_prototype)
main/CMakeLists.txt

Cmake


idf_component_register(SRCS "main.c" INCLUDE_DIRS ".")
main/main.c

C


#include "freertos/FreeRTOS.h"
#include "freertos/task.h"

void app_main(void)
{
    for (;;) {
        vTaskDelay(pdMS_TO_TICKS(1000));
    }
}
Startup sequence
ESP-IDF initializes clocks, memory, FreeRTOS, and system services before calling app_main(). This starter intentionally initializes no GPIOs or peripherals.
  • Pin mapping

  • Toolchain

  • `CMakeLists.txt`

  • `main/CMakeLists.txt`

  • `main/main.c`

  • Startup sequence