代码改变世界

随笔档案-2021年9月25日

关于codeblocks无法调试的解决方法

2021-09-25 23:02 by dreamboy2000, 748 阅读, 收藏,
摘要: 关于codeblocks无法调试的解决方法: 1.首先确保已经指定调试程序路径的配置: 方法:Setting->Compiler->Toolchain…-> 选择codeblocks安装路径下的MinGW->OK Setting->Debugger->Default->路径为安装目录下的bin下的g 阅读全文

CodeBlocks "no such file or directory" 错误解决方案(创建类找不到头文件)

2021-09-25 23:00 by dreamboy2000, 2176 阅读, 收藏,
摘要: 在CodeBlocks下,有时候需要自己定义类,当然就要添加相应的头文件,但添加进去的头文件明明包含在项目中了, 但编译时还是会报错:no such file or directory;这是为什么呢? 其实是一个很简单的问题,但有些人(比如说我)就会困在这儿,百度也找不到(至少我是没找到),所以写了 阅读全文

CodeBlocks调试器基本使用方法

2021-09-25 22:57 by dreamboy2000, 1252 阅读, 收藏,
摘要: CodeBlocks是一个开放源码的全功能的跨平台C/C++集成开发环境。 下载地址:http://www.codeblocks.org/downloads/26 其中,Windows环境下可以使用安装包安装程序,或使用免安装的zip。 一、 CodeBlocks是一个集成开发环境(IDE),其中最 阅读全文

The Goertzel Algorithm

2021-09-25 15:18 by dreamboy2000, 172 阅读, 收藏,
摘要: The Goertzel algorithm can perform tone detection using much less CPU horsepower than the Fast Fourier Transform, but many engineers have never heard 阅读全文

Serial bootloader for STM8

2021-09-25 10:16 by dreamboy2000, 119 阅读, 收藏,
摘要: This article will cover developing a serial bootloader for STM8S microcontrollers. Contents: Entry condition Serial protocol Flash block programming I 阅读全文