IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 嵌入式 -> Arduino CLI 添加 LGT8F328P -> 正文阅读

[嵌入式]Arduino CLI 添加 LGT8F328P

出了一款国产芯片LGT8F328P,价格只要五块多,可以代替连连涨价的ATMEGA328P。

LGT8F328P使用的编译器和ATMEGA328P相同,但是库不同,只需要添加库文件即可使用。

先介绍arduino IDE中添加方法:

首选项--添加开发板管理器网址并确定:

https://raw.githubusercontent.com/dbuezas/lgt8fx/master/package_lgt8fx_index.json

--到开发板管理器--搜索lgt--安装

Arduino CLI 添加方法:

Arduino CLI主要用于scratch3.0软件中,或者其他不适应IDE的平台,我把配置过的CLI文件打包在我的下载资源里,包括arduino系列、esp32、esp8266、LGT8fxBoards等常用开发板都添加了,可以直接下载后使用。

ArduinoCLI,包括arduino系列、esp32、esp8266、LGT8fxBoards等常用开发板-其它文档类资源-CSDN下载ArduinoCLI,包括arduino系列、esp32、esp8266、LGT8fxBoard更多下载资源、学习资料请访问CSDN下载频道.https://download.csdn.net/download/ayfen/81857244

这个是官方的CLI介绍

Arduino CLIArduino Command Line Interfacehttps://arduino.github.io/arduino-cli/0.20/

下面的教程参考MacOS下使用Arduino命令行工具进行嵌入式开发——Arduino CLI使用教程 - 知乎

arduino-cli 的使用 - 简书

我把原来的ESP32换成了?LGT8F328P。

LGT8F328P的GitHub地址

https://github.com/dbuezas/lgt8fxicon-default.png?t=M1H3https://github.com/dbuezas/lgt8fx

0 安装

当然,你得先安装Arduino IDE,具体过程这里就不赘述了。

然后执行以下命令安装Arduino CLI:

$ brew update
$ brew install arduino-cli

如果无法使用brew安装,可以参考其他方法:

Installation - Arduino CLI

1 基本使用

1.1 在你开始之前 Before you start

arduino-cli是一个命令的容器,每个命令都有自己专门的帮助文本,可以像这样用help命令显示。

$ arduino-cli help core
Arduino Core operations.

Usage:
    arduino-cli core [command]

Examples:
    ./arduino-cli core update-index

Available Commands:
    download     Downloads one or more cores and corresponding tool dependencies.
    install      Installs one or more cores and corresponding tool dependencies.
    list         Shows the list of installed platforms.
    search       Search for a core in Boards Manager.
    uninstall    Uninstalls one or more cores and corresponding tool dependencies if no more used.
    update-index Updates the index of cores.
    upgrade      Upgrades one or all installed platforms to the latest version.

Flags:
    -h, --help   help for core

Global Flags:
        --additional-urls strings   Additional URLs for Boards Manager.
        --config-file string        The custom config file (if not specified the default will be used).
        --format string             The output format, can be [text|json]. (default "text")
        --log-file string           Path to the file where logs will be written.
        --log-format string         The output format for the logs, can be [text|json].
        --log-level string          Messages with this level and above will be logged.
    -v, --verbose                   Print the logs on the standard output.

Use "arduino-cli core [command] --help" for more information about a command.

1.2 创建一个配置文件 Create a configuration file

严格来说,Arduino CLI不需要一个配置文件来工作,因为命令行界面提供了任何可能的功能。然而,有一个配置文件可以让你在发布命令时少打很多字,可以用如下的命令创建:

$ arduino-cli config init
Config file written to: /Users/reus/Library/Arduino15/arduino-cli.yaml

如果你检查arduino-cli.yaml的内容,你会发现可用的选项及其各自的默认值。更多信息,请看配置文档。

1.3 创建一个新的sketch Create a new sketch

要在当前目录下创建一个名为MyFirstSketch的新项目,运行以下命令:

$ arduino-cli sketch new MyFirstSketch
Sketch created in: [path/to/your/current/dir]/MyFirstSketch

一个sketch是一个包含源文件和库等资源的文件夹;new命令为你创建一个名为MyFirstSketch.ino的.ino文件,里面是空的模板代码:

$ cat ./MyFirstSketch/MyFirstSketch.ino

void setup() {
}

void loop() {
}

1.4 将开发板连接到电脑 Connect the board to your PC

新安装后要做的第一件事是通过运行以下命令更新本地可用平台和库的cache:

$ arduino-cli core update-index
Updating index: package_index.json downloaded
Updating index: package_index.json.sig downloaded

使用USB线将板子连接到电脑后,你可以通过执行以下命令检查它是否被识别:

$ arduino-cli board list

1.5 为你的板子安装内核 Install the core for your board

我们要安装的是lgt8fx,故执行以下命令:

$ arduino-cli core install LGT8fxBoards:lgt8fx
Error during install: Platform 'LGT8fxBoards:lgt8fx' not found: platform LGT8fxBoards:lgt8fx has no available releases

这里出现了问题,因为我们没有添加第三方内核。比如我们需要lgt8fx的内核,那么就对配置文件的board_manager作如下修改,文件一般在cli安装目录下:

board_manager:
  additional_urls:
    - https://raw.githubusercontent.com/dbuezas/lgt8fx/master/package_lgt8fx_index.json

然后更新cache:

$ arduino-cli core update-index
Updating index: package_index.json downloaded
Updating index: package_index.json.sig downloaded
Updating index: package_lgt8fx_index.json downloaded

$ arduino-cli core search lgt8fx

重新安装内核:

$ arduino-cli core install LGT8fxBoards:lgt8fx

执行以下命令验证一下:

$ arduino-cli core list

1.6 编译和烧写 Compile and upload the sketch

$ arduino-cli compile --fqbn LGT8fxBoards:avr:328

  嵌入式 最新文章
基于高精度单片机开发红外测温仪方案
89C51单片机与DAC0832
基于51单片机宠物自动投料喂食器控制系统仿
《痞子衡嵌入式半月刊》 第 68 期
多思计组实验实验七 简单模型机实验
CSC7720
启明智显分享| ESP32学习笔记参考--PWM(脉冲
STM32初探
STM32 总结
【STM32】CubeMX例程四---定时器中断(附工
上一篇文章      下一篇文章      查看所有文章
加:2022-02-26 11:46:32  更:2022-02-26 11:49:50 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 9:27:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码