- 1、本文档共19页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
STM32学习笔记(国外英文资料)
STM32学习笔记(国外英文资料)
English word
Remap: heavy mapping
Partialremap: partial remapping
Pend: hang
The establishment of the project template can be to use a standard template, only it is ok to change the Main function, do not need to add a header file path, the statements set the debug macro to define variables, parameters, etc. The generic templates contain USER, CORE, FWLIB, OBJ, and HARDWARE five folders. Put the main function c file in USER. In CORE, start c and s files. FWLIB places the firmware library C file. OBJ places the compiled clutter of generated files. HARDWARE places the c file for the HARDWARE associated functions that you write.
The assignment operation:
With one or an operation, you can set the one to zero, and you can keep the other unmanipulated bits unchanged. Such as:
GPROA_ BSRR | = 0X01 / / does not change the value of the first 7 bits, the zero position is 1
GPROA_ BSRR = ~ 0X01 / / also does not change the previous seven bits, the zeroth position is 0
Timx- SR = (uint16_t) ~ TIM_FLAG; / / its also a zero operation
Tips for writing:
GPIOx - BSRR = ((uint32_t) 0x01)
This is to set the BSRR registers pinpos bit to 1, so why do you want to set a fixed value by moving from the left instead of directly? In fact, this is intended to improve the readability and reusability of the code. This line of code is straightforward to know that the pinpos bit is set to 1. If you write
GPIOx - BSRR = 0 x0030; This code is not good and it is bad for reuse.
Theres a lot of code like this:
Gpia- ODR | = 1 5; / / PA. 5 output is high, not changing other bits
So lets see, 5 tells us that its the fifth and the sixth port, and 1 tells us that its set to 1.
Format: # define identifier string
The identifier is the defined macro name. A string can be a constant, an expression, a format string, etc. Such as:
# define SYSCLK_FREQ_72MHzThe value of the definition identifier SYSCLK_FREQ_72MHz is
Single-chip microcomputer application development proce
您可能关注的文档
最近下载
- Rinnai林内即享系列 燃气热水器RUS-R20E65ARFR16 20 24R16E65ARF·产品说明书.pdf
- 防腐保温施工组织设计方案.docx VIP
- SF_T 0124-2021 录像过程分析技术规范.docx VIP
- CIS 7:2014 马来西亚建筑施工工程质量评价体系 STANDARD-CIS (QLASSIC).docx
- 广告牌拆除施工方案.docx VIP
- 2025年十堰经济技术开发区公开招聘编外人员14人笔试模拟试题及答案解析.docx VIP
- 2025年新疆高考数学试卷(含答案及解析).docx
- 高中英语 高考模拟卷(5)高考模拟卷.pdf VIP
- 2025国家电网有限公司企业文化、电力与能源战略参考练习卷含答案.docx
- 银行职业资格《中级银行管理》知识总结.pdf VIP
文档评论(0)