专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
STM32
串口工具
有在Linux下玩stm32的朋友吗?是用的什么工具呢(硬件和软件)?
2019-12-13 18:27
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
STM32/STM8
6526
10
941
我想用JLink那个linux的测试版,曾经试过,已经驱动上,进到
JLink > _
里面了,
而且用命令已经可以识别我的芯片型号 cortex-m3,可是Download的时候总是出错,失败
所以不知道具体还应该做什么?
还需要什么开发环境吗?用的是什么工具链呢?或者干脆不用JLink直接用串口线?
望不吝赐教~
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
10条回答
y574924080
1楼-- · 2019-12-14 19:40
精彩回答 2 元偷偷看……
加载中...
101010
2楼-- · 2019-12-14 23:18
这个帖子够强,一年多了楼主还能占2楼
加载中...
marshallemon
3楼-- · 2019-12-15 02:19
mark
加载中...
librae8226
4楼-- · 2019-12-15 07:09
本帖最后由 librae8226 于 2013-7-25 22:42 编辑
抱歉,好久没来看过了。
这些年在一家芯片公司工作,环境一直是linux,包括自己的机器和公司服务器,所以几乎不会用到windows,除了打实况 :P
关于stm32的开发,详细的方法可以参考我们的一个开源项目:
https://github.com/LeafGrass/ousia
这个项目里采用 linux host 作为开发环境,有完整的 build system,可以方便地添加/删减模块。
实现的是一个极其简化的操作系统,有最笨的调度和最简单的内存“管理”,最初就在stm32上进行开发成型的。
整个系统连上USB就可以玩了,类似arduino,不需要其它调试设备,只有第一次使用的时候需要烧写一遍bootloader。因此开发也变得非常方便。
相信对于初级阶段的学习非常合适。
有需要的朋友可以随便拿去用,pitolan大大曾教我们饮水思源,非常乐意帮助后来的同学,有问可以直接邮件联系我:
我的论坛名字@gmail点com
这里把 README 内容贴出来:
Ousia
=======================
COPYRIGHT (C) LEAFGRASS
Introduction
------------
"Ousia" is picked from Greek.
Mainly intend to represent the essence of Real-Time Theory.
Developed following K-I-S-S principle.
Source Tree Architecture
------------------------
* core/
Ousia core routines.
* doc/
Complete documentation of Ousia.
* driver/
Different kinds of device drivers based on Ousia.
They are all configurable.
* framework/
Framework based on Ousia. Such as shell, vfs, etc.
They are scalable and configurable, either.
* include/
Header files of main routines of Ousia.
* platform/
Chip and board specific code, e.g. low-level library.
Ousia porting code are also placed here.
* project/
Project source code. Include several sample project instances.
* script/
Useful scripts used while Ousia developing.
* support/
Basic supporting stuffs for Ousia developing and building.
Useful template files are placed here, such as porting code template.
How to Start for Fresh New Environment
--------------------------------------
- Install toolchain
- Make
For a general purpose, these steps are enough, but there are some more
steps needs to do for each platform.
As for stm32 on linux host, we use dfu/serial/jtag to upload firmware,
setup like below:
- Install Codesourcery toolchain. (e.g. arm-2011.03-42-arm-none-eabi)
- Install dfu-util/pyserial/openocd (it's up to your preference).
Ps: In fedora or ubuntu, yum/apt-get install them is ok.
- Resolve usb or serial access problems.
(e.g. copy ousia/support/dfu/45-maple.rules to /etc/udev/rules.d/)
- Install minicom for console print if you want to debug with uart.
Ps: Default port is /dev/ttyACMx
- Do 'make' and 'make install'.
Create User Project Steps
-------------------------
- Create a directory named PROJECT_NAME in folder "project".
- Add user source code.
- Create a file rules.mk to specify source code related rules for makefile.
- Update TARGET_PLATFORM and PROJECT_NAME in main Makefile, then make.
Ps: Refer to existing projects for further detailed information.
Core Developing Steps
---------------------
- Choose or create a branch of yourself to work on.
- Update source code, include those version related strings.
- Modify related Makefiles and configuration files.
- Build then do some testing on this branch.
- Commit it.
- Tag a new one if a new version is commited.
- Push this branch to remote repo.
- If this is a release version, update Ousia Release Notes.
Porting Steps
-------------
- Create a directory named PLATFORM_NAME in folder "platform", then enter it.
- Create three files: rules.mk config.mk target.mk.
@rules.mk: makefile source code related rules
@config.mk: parameters or flags for toolchains and environment
@target.mk: rules for building target
- Create a directory named "port" there then create three files in it.
@ousia_cfg.h: os scalability related configurations
@ousia_port.h: header of porting code
@ousia_port.c: implentation of porting
- Create other porting related stuffs, such as linker scripts, if necessary.
- Update TARGET_PLATFORM and PROJECT_NAME in main Makefile, then make.
Ps: If modified porting related code, should not edit directly in "core/port",
do that in specific platform directory instead, e.g. "platform/stm32/port".
Makefile will copy them into "core/port" automatically depend on specific cpu
types.
Build A Different Platform
--------------------------
Only modify the header TODO in root Makefile
- Assign specific TARGET_PLATFORM and PROJECT_NAME
Download Code to Target Chip
----------------------------
- Modify related User Customization Items in Makefile in source tree.
For stm32, you need to decide which MEMORY_TARGET to use:
jtag, flash, or ram.
- Do proper operation on hardware. (i.e. change boot jumper or reset or sth.)
- Then type 'make install' and it will do everything for you.
Ps: For stm32, there may be a bootloader, 'make bootloader' will download
bootloader code to chip via serial. And for simulation on x86, no code
downloading procedure is needed. See Makefile for detailed information.
Acknowledgments
---------------
Parts of make system and libmaple stm32 low-level code are borrowed from libmaple.
Thanks to their excellent works! - http://leaflabs.com
Many code are originally come or inspired from Nuttx, a perfect and stable operating system.
Also great appreciations to the contributors! - http://nuttx.org
复制代码
上两幅简单的图吧
加载中...
上一页
1
2
一周热门
更多
>
相关问题
STM32F4上I2C(在PROTEUS中模拟)调试不通的问题
6 个回答
芯片供应紧张,准备换个MCU,MM32L系列替换STM32L系列的怎么样?
7 个回答
STM32同时使用两个串口进行数据收发时数据丢包的问题
5 个回答
STM32F103串口通信死机问题
4 个回答
STM32WLE5CC连接SX1268在LoRa模式下能与 SX1278互通吗?
2 个回答
STM32开发板免费用活动
7 个回答
stm32 处理 DHT11占用太多时间,大家程序是怎么设计的
8 个回答
分享一个STM32单片机做的离线编程器代码
9 个回答
相关文章
ST公司第一款无线低功耗单片机模块有效提高物联网设计生产效率
0个评论
如何实现对单片机寄存器的访问
0个评论
通过USB用STM32片内自带Bootloader下载程序及注意事项
0个评论
欲练此功必先自宫之STM32汇编启动,放慢是为了更好的前行
0个评论
×
关闭
采纳回答
向帮助了您的网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
STM32
串口工具
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
关闭
您已邀请
15
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
抱歉,好久没来看过了。
这些年在一家芯片公司工作,环境一直是linux,包括自己的机器和公司服务器,所以几乎不会用到windows,除了打实况 :P
关于stm32的开发,详细的方法可以参考我们的一个开源项目:
https://github.com/LeafGrass/ousia
这个项目里采用 linux host 作为开发环境,有完整的 build system,可以方便地添加/删减模块。
实现的是一个极其简化的操作系统,有最笨的调度和最简单的内存“管理”,最初就在stm32上进行开发成型的。
整个系统连上USB就可以玩了,类似arduino,不需要其它调试设备,只有第一次使用的时候需要烧写一遍bootloader。因此开发也变得非常方便。
相信对于初级阶段的学习非常合适。
有需要的朋友可以随便拿去用,pitolan大大曾教我们饮水思源,非常乐意帮助后来的同学,有问可以直接邮件联系我:
我的论坛名字@gmail点com
这里把 README 内容贴出来:
- Ousia
- =======================
- COPYRIGHT (C) LEAFGRASS
- Introduction
- ------------
- "Ousia" is picked from Greek.
- Mainly intend to represent the essence of Real-Time Theory.
- Developed following K-I-S-S principle.
- Source Tree Architecture
- ------------------------
- * core/
- Ousia core routines.
- * doc/
- Complete documentation of Ousia.
- * driver/
- Different kinds of device drivers based on Ousia.
- They are all configurable.
- * framework/
- Framework based on Ousia. Such as shell, vfs, etc.
- They are scalable and configurable, either.
- * include/
- Header files of main routines of Ousia.
- * platform/
- Chip and board specific code, e.g. low-level library.
- Ousia porting code are also placed here.
- * project/
- Project source code. Include several sample project instances.
- * script/
- Useful scripts used while Ousia developing.
- * support/
- Basic supporting stuffs for Ousia developing and building.
- Useful template files are placed here, such as porting code template.
- How to Start for Fresh New Environment
- --------------------------------------
- - Install toolchain
- - Make
- For a general purpose, these steps are enough, but there are some more
- steps needs to do for each platform.
- As for stm32 on linux host, we use dfu/serial/jtag to upload firmware,
- setup like below:
- - Install Codesourcery toolchain. (e.g. arm-2011.03-42-arm-none-eabi)
- - Install dfu-util/pyserial/openocd (it's up to your preference).
- Ps: In fedora or ubuntu, yum/apt-get install them is ok.
- - Resolve usb or serial access problems.
- (e.g. copy ousia/support/dfu/45-maple.rules to /etc/udev/rules.d/)
- - Install minicom for console print if you want to debug with uart.
- Ps: Default port is /dev/ttyACMx
- - Do 'make' and 'make install'.
- Create User Project Steps
- -------------------------
- - Create a directory named PROJECT_NAME in folder "project".
- - Add user source code.
- - Create a file rules.mk to specify source code related rules for makefile.
- - Update TARGET_PLATFORM and PROJECT_NAME in main Makefile, then make.
- Ps: Refer to existing projects for further detailed information.
- Core Developing Steps
- ---------------------
- - Choose or create a branch of yourself to work on.
- - Update source code, include those version related strings.
- - Modify related Makefiles and configuration files.
- - Build then do some testing on this branch.
- - Commit it.
- - Tag a new one if a new version is commited.
- - Push this branch to remote repo.
- - If this is a release version, update Ousia Release Notes.
- Porting Steps
- -------------
- - Create a directory named PLATFORM_NAME in folder "platform", then enter it.
- - Create three files: rules.mk config.mk target.mk.
- @rules.mk: makefile source code related rules
- @config.mk: parameters or flags for toolchains and environment
- @target.mk: rules for building target
- - Create a directory named "port" there then create three files in it.
- @ousia_cfg.h: os scalability related configurations
- @ousia_port.h: header of porting code
- @ousia_port.c: implentation of porting
- - Create other porting related stuffs, such as linker scripts, if necessary.
- - Update TARGET_PLATFORM and PROJECT_NAME in main Makefile, then make.
- Ps: If modified porting related code, should not edit directly in "core/port",
- do that in specific platform directory instead, e.g. "platform/stm32/port".
- Makefile will copy them into "core/port" automatically depend on specific cpu
- types.
- Build A Different Platform
- --------------------------
- Only modify the header TODO in root Makefile
- - Assign specific TARGET_PLATFORM and PROJECT_NAME
- Download Code to Target Chip
- ----------------------------
- - Modify related User Customization Items in Makefile in source tree.
- For stm32, you need to decide which MEMORY_TARGET to use:
- jtag, flash, or ram.
- - Do proper operation on hardware. (i.e. change boot jumper or reset or sth.)
- - Then type 'make install' and it will do everything for you.
- Ps: For stm32, there may be a bootloader, 'make bootloader' will download
- bootloader code to chip via serial. And for simulation on x86, no code
- downloading procedure is needed. See Makefile for detailed information.
- Acknowledgments
- ---------------
- Parts of make system and libmaple stm32 low-level code are borrowed from libmaple.
- Thanks to their excellent works! - http://leaflabs.com
- Many code are originally come or inspired from Nuttx, a perfect and stable operating system.
- Also great appreciations to the contributors! - http://nuttx.org
复制代码上两幅简单的图吧一周热门 更多>