1. 16 11月, 2020 3 次提交
    • M
      IDF release/v3.3 68b237fe5 · f6bf0f7a
      me-no-dev 提交于
      f6bf0f7a
    • M
      Merge branch 'master' into idf-release/v3.3 · a59eb5d5
      Me No Dev 提交于
      a59eb5d5
    • M
      Merge pull request #4538 from loick111/feature/custom_variants_dir · adafd9d7
      Me No Dev 提交于
      The goal is to allow custom configuration for `variants_dir` to define our own board variant directly in the project.
      
      With this functionnality, we are now allowed to define in our projects a custom board **AND** a custom variant.
      https://docs.platformio.org/en/latest/platforms/creating_board.html#custom-embedded-boards
      
      Here is an example of how to define a custom board with custom variant:
      ```
      my_project
      ├── boards
      │   └── custom_esp32dev.json
      └── variants
          └── custom-esp32dev
              └── pins_arduino.h
      ```
      
      custom_esp32dev.json
      ```json
      {
        "build": {
          "arduino":{
            "ldscript": "esp32_out.ld"
          },
          "core": "esp32",
          "extra_flags": "-DARDUINO_ESP32_DEV",
          "f_cpu": "240000000L",
          "f_flash": "40000000L",
          "flash_mode": "dio",
          "mcu": "esp32",
          "variants_dir": "variants",
          "variant": "custom-esp32dev"
        },
        "connectivity": [
          "wifi",
          "bluetooth",
          "ethernet",
          "can"
        ],
        "debug": {
          "openocd_board": "esp-wroom-32.cfg"
        },
        "frameworks": [
          "arduino",
          "espidf"
        ],
        "name": "My Custom Espressif ESP32 Dev Module",
        "upload": {
          "flash_size": "4MB",
          "maximum_ram_size": 327680,
          "maximum_size": 4194304,
          "require_upload_port": true,
          "speed": 460800
        },
        "url": "https://en.wikipedia.org/wiki/ESP32",
        "vendor": "Espressif"
      }
      ```
      adafd9d7
  2. 15 11月, 2020 6 次提交
  3. 14 11月, 2020 1 次提交
  4. 13 11月, 2020 1 次提交
  5. 11 11月, 2020 2 次提交
  6. 10 11月, 2020 1 次提交
  7. 09 11月, 2020 1 次提交
  8. 08 11月, 2020 2 次提交
  9. 07 11月, 2020 2 次提交
  10. 06 11月, 2020 4 次提交
  11. 04 11月, 2020 6 次提交
  12. 03 11月, 2020 11 次提交