会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Loading
menu
Gamesun's Blog
首页
标签
归档
私信
管理
随笔 - 59
文章 - 0
评论 - 7
阅读 -
15万
2024年11月25日
STM32单线SPI避坑指南 (SPI_Direction_1Line_Tx, 16bit)
摘要: void Init(void) { GPIO_InitTypeDef GPIO_InitStruct; SPI_InitTypeDef SPI_InitStruct; RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2, ENABLE); RCC_AHB1Perip
阅读全文
posted @ 2024-11-25 16:13 gamesun
阅读(213)
评论(0)
推荐(1)
2023年8月29日
PyQt/PySide + Pyinstaller is corrupted by UPX
摘要: Windows 10 64-bits Python 3.8.10 64-bits PySide2 5.15.2 PyInstaller 4.3 UPX 4.1.0 Problem 1: > "This application failed to start because no Qt platfor
阅读全文
posted @ 2023-08-29 18:53 gamesun
阅读(32)
评论(0)
推荐(0)
2023年6月8日
离线安装Python库
摘要: Windows下 pip 换源 `pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple` 将系统已安装的包按照需要的格式打包 `pip freeze >requirements.txt` 下载离线包 `pip
阅读全文
posted @ 2023-06-08 09:09 gamesun
阅读(39)
评论(0)
推荐(0)
2023年5月31日
迁移SVN仓库到Git
摘要: `git svn clone http://???/svn/??? --authors-file=authors-transform.txt` ``` cat authors-transform.txt svn_username = git_username ```
阅读全文
posted @ 2023-05-31 09:52 gamesun
阅读(14)
评论(0)
推荐(0)
2022年4月24日
firmware file rtl_bt/rtl8761b_fw.bin not found
摘要: Ubuntu安装RTL8761B驱动 # Download rtl8761b_config and rtl8761b_fw from https://github.com/Realtek-OpenSource/android_hardware_realtek wget https://raw.git
阅读全文
posted @ 2022-04-24 10:08 gamesun
阅读(617)
评论(0)
推荐(0)
2022年3月18日
Ubuntu彻底禁用Software updater更新提醒
摘要: 最好的办法是删除update-notifier sudo apt-get remove update-notifier 参考链接
阅读全文
posted @ 2022-03-18 09:52 gamesun
阅读(1814)
评论(0)
推荐(0)
2020年8月25日
重置剪切板缓存,拯救假死的剪切板
摘要: 点击Win键+R键打开Run窗口。 在窗口中输入cmd /c “echo off | clip” 。(您可以直接拷贝这段命令) 点击确定按钮。
阅读全文
posted @ 2020-08-25 22:20 gamesun
阅读(2242)
评论(0)
推荐(0)
Cortex-M4的快速memcpy,根据数据对齐情况自动优化,速度为普通memcpy的1.3到5.2倍
摘要: 代码:https://github.com/gamesun/memcpy_fast memcpy_fast与memcpy速度比较 测试方法 memcpy_fast(dest + a, src + b, TEST_BUFF_SIZE + c); 与 memcpy(dest + a, src + b,
阅读全文
posted @ 2020-08-25 10:31 gamesun
阅读(910)
评论(0)
推荐(0)
2020年8月24日
MyTerm入选北极代码库计划,喜获「Arctic Code Vault Contributor」勋章
摘要:
阅读全文
posted @ 2020-08-24 09:18 gamesun
阅读(216)
评论(0)
推荐(0)
2020年4月10日
Ubuntu 16.04 安装CP210x,CH340驱动
摘要: CH340 https://github.com/juliagoda/CH341SER CP210x 因为源码版本不是linux-source-4.15.0-91-generic,导致error,一个临时办法是修改Makefile中的版本号,但是不确定有没有影响。 $ uname -r 4.15.0
阅读全文
posted @ 2020-04-10 09:03 gamesun
阅读(3223)
评论(0)
推荐(0)
2020年1月22日
Ubuntu安装Windows官方版QQ和微信(2021/2/4更新,微信已更新到2.9.5.41)
摘要: 2021/2/4更新,微信已更新到2.9.5.41(发帖时Windows上的微信最新是3.1.0) 安装后注销再登录,可以看到微信图标了 安装步骤,依然是: wget -O- https://deepin-wine.i-m.dev/setup.sh | sh sudo apt-get install
阅读全文
posted @ 2020-01-22 13:20 gamesun
阅读(6659)
评论(0)
推荐(0)
2020年1月10日
火狐Firefox 52.90版是最后一个支持WinXP和Vista的版本
摘要: Firefox 52.90版是最后一个支持 Windows XP 和 Windows Vista 的升级版。(参考:https://support.mozilla.org/zh-CN/kb/firefox-windows-xp-vista) Firefox 52.90 简体中文版: http://f
阅读全文
posted @ 2020-01-10 21:00 gamesun
阅读(9914)
评论(0)
推荐(0)
2020年1月6日
关闭Eclipse CDT工具栏上的编译按钮(LaunchBar)
摘要: 最近更新了Eclipse 2019-12 CDT,工具栏的编译按钮太碍事了,关闭方法挺难找的,记录如下供参考: Menu "Window" -> Preferences -> Run/Debug -> Launching -> Launch Bar,取消所有钩选框。
阅读全文
posted @ 2020-01-06 22:23 gamesun
阅读(749)
评论(0)
推荐(0)
2019年6月26日
Python标准组件ConfigParser配置文件解析器,保存配置时支持大写字母的方法
摘要: 虽然自己已经改用xml作为配置文件首选格式了,但是有时候还是需要解析ini、cfg文件(为了兼容早期版本或者其他作者的软件)。 基本上Python自带的ConfigParser足够应对了,但是美中不足的是,configparser.RawConfigParser.write()保存文件时,会把所有k
阅读全文
posted @ 2019-06-26 15:01 gamesun
阅读(672)
评论(0)
推荐(0)
2019年1月12日
Git for Windows,TortoiseGit支持WinXP的最后版本及下载方法
摘要: TortoiseGit兼容Windows XP和Windows Server 2003的最后版本: TortoiseGit 1.8.16.0 (https://download.tortoisegit.org/tgit/1.8.16.0/) Git for Windows支持Windows XP和W
阅读全文
posted @ 2019-01-12 10:45 gamesun
阅读(3607)
评论(0)
推荐(0)
下一页
公告
昵称:
gamesun
园龄:
12年4个月
粉丝:
5
关注:
3
+加关注
more_horiz
keyboard_arrow_up
light_mode
palette
选择主题
点击右上角即可分享