自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(20)
  • 资源 (5)
  • 收藏
  • 关注

原创 python uart工具

python uart

2023-07-19 11:45:48 198

原创 python hex、s19文件读取脚本

hex、s19转bin

2023-05-17 15:19:35 704

原创 2280s-32-6 python读取buffer脚本

通过python 操作2280s-32-6仪器。

2023-05-17 15:13:36 222

原创 keil调用python合并固件操作

keil 调用python脚本,增加固件描述信息等方法。

2023-05-17 15:04:22 404

原创 python-pylink 制作烧写工具

使用pylink,构建个性化烧写工具。

2023-05-17 14:54:59 1100

原创 ISO14229-1_2013_03报文解析脚本

python、UDS应用层

2023-02-02 15:54:22 315 1

原创 jlink烧写脚本-python

python pylink操作

2023-02-02 15:50:33 855

原创 ISO15765-2 CAN报文解析 python

ISO15765-2 python CAN报文解析。

2023-02-02 15:41:48 597

原创 python异常位置捕捉方法

python 异常捕捉

2022-09-28 09:46:14 694

原创 jlink嵌入式程序烧写工具脚本

Jlink封装程序烧写工具

2022-09-28 09:33:39 1328

原创 stm32 SDRAM配置

SDRAM:http://news.eeworld.com.cn/mcu/ic466163.html大小:32M字节SDRAM时钟频率:90MHz/* hsdram1.Init /hsdram1.Init.SDBank = FMC_SDRAM_BANK2;hsdram1.Init.ColumnBitsNumber = FMC_SDRAM_COLUMN_BITS_NUM_9;hsdram1.Init.RowBitsNumber = FMC_SDRAM_ROW_BITS_NUM_13;hsdra

2021-06-11 17:47:40 768 1

原创 python字符转换

-- coding: utf-8 --import sysimport timeimport binasciiif name == ‘main’:while True:msg = input(‘请输入一个大写字符:’)if len(msg) > 1:continueif msg[0].isascii() and msg[0].isupper():temp = bytes(msg, encoding = “utf8”)[0]print(‘对应的ASCII码:十进制:%d 16进制:

2021-03-31 16:13:59 524

原创 二进制文件比较工具python

二进制文件比较工具python# -*- coding: utf-8 -*-import sysimport timeimport binasciiimport serialimport serial.tools.list_portsimport loggingimport osimport structimport datetimelogging.basicConfig(format='%(asctime)s,%(msecs)d %(levelname)-8s [%(filenam

2021-03-31 15:45:34 490

原创 DLT645-2007模拟表 python源码

DLT645-2007模拟点表python源码# -*- coding: utf-8 -*-import sysimport timeimport binasciiimport serialimport serial.tools.list_portsimport loggingimport osimport structimport datetimelogging.basicConfig(format='%(asctime)s,%(msecs)d %(levelname)-8s [%

2021-03-31 15:43:28 1799

原创 stm32cubemx 生成iar工程系统无法运行问题

stm32cubemx 生成iar工程系统无法运行问题stm32cubemx 生成的stm32f765工程无法正常运行,最后确认为操作系统不调度,处理方法如下:void SysTick_Handler(void){ /* USER CODE BEGIN SysTick_IRQn 0 */ SysTick->CTRL; HAL_IncTick(); if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) { /

2021-03-31 15:41:04 660

原创 python struct模块

python struct模块输入:4字节或8字节hex 字符串输出对应float或double数值#!usr/bin/env python# -*- coding: UTF-8 -*-import structimport binasciiu8_lit = struct.Struct('B')s8_lit = struct.Struct('b')u16_lit = struct.Struct('<H')s16_lit = struct.Struct('<h')u32_lit

2021-03-31 15:37:15 230

原创 2021-03-31

豪爵DF150摩托车 机油螺栓此处放油螺栓:17mm

2021-03-31 15:30:25 169

原创 嵌入式系统日志

嵌入式系统日志void wdbg_printf(const char * format, ... ) { va_list args; s32 len; if(g_trace_handle == NULL) { return; } s8* buf = (s8*)sys_malloc(128); if(buf) { va_start(args, format); len = vsnprintf ((char

2021-03-31 15:17:38 509

原创 STM32F7 LWIP socket 创建TCP server

STM32F7 LWIP socket 创建TCP server**阻塞方式:**typedef struct { struct sockaddr_in client_info; s32 id; u16 port;} client_info_s;void client_proc(void* parm) { client_info_s* info = (client_info_s*)parm; u8* rec_data = sys_malloc(1500);

2021-03-31 15:14:26 1384 1

原创 STM32 + stmcubemx + freertos 低功耗异常问题

STM32 + stmcubemx + freertos 低功耗异常问题最近开发一款产品出现以下问题, stmL151低功耗芯片,进入低功耗退出后一段时间出现系统异常,进入vListInsert->for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator-&

2021-01-03 13:38:10 566

GNU Binutils 2.39

ld combines a number of object and archive files, relocates their data and ties up symbol references. Usually the last step in compiling a program is to run ld. ld accepts Linker Command Language files written in a superset of AT&T’s Link Editor Command Language syntax, to provide explicit and total control over the linking process. This version of ld uses the general purpose BFD libraries to operate on object files. This allows ld to read, combine, and write object files in many different forma

2022-09-29

Jlink 嵌入式烧写工具。

jlink封装烧写工具,抛转引用,其他科根据次修改。

2022-09-28

gcc 12.0使用手册

使用手册

2021-12-31

串口传输时间计算工具.exe

计算串口发送数据所需要的时间

2021-06-03

u-boot-2021.04-rc4.tar.bz2

u-boot-2021.04

2021-04-23

gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2

centos gcc-arm-none-eabi

2021-04-23

STM32F7 LWIP IAR参考示例

1、操作系统freertos 2、文件系统 fatfs。 3、存储介质 SDRAM。 4、以太网 LWIP + LAN8741 5、TCP server 服务。 echo 6、TFTP服务器。

2021-03-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除