I.MX6U IVT 表和 Boot Data 数据 NXP官方提供的手册中 Chapter 8:System Boot中的 Program Image小节中的描述如下: Program image This section describes the data structures that ar ...
分类:
其他好文 时间:
2020-07-30 01:21:47
阅读次数:
79
1 Python操作Redis之普通连接 # 1 pip3 install redis # 简单使用 from redis import Redis # conn=Redis() #连接对象 conn=Redis(host='127.0.0.1', port=6379) ret=conn.get(' ...
分类:
其他好文 时间:
2020-07-27 17:45:49
阅读次数:
59
J-Flash ARM烧写时弹出 处理办法:打开下面软件解锁即可 这样就代表解锁成功,可以烧录了 ...
分类:
其他好文 时间:
2020-07-27 09:45:30
阅读次数:
133
I.MX6U 启动方式详解 1、启动方式的选择 根据 NXP(恩智浦)官方提供的 I.MX6U 参考手册 chapter8:System Boot OverviewThe boot process begins at Power On Reset (POR) where the hardware r ...
分类:
其他好文 时间:
2020-07-27 09:31:49
阅读次数:
110
Nump库的基本使用 库的导入 PyCharm file - Setting - Project interpreter - + - (Searh what you need) - Install Package 多维数组 import numpy as np a = np.array([[1, 2 ...
分类:
其他好文 时间:
2020-07-26 18:58:40
阅读次数:
65
下载: cnpm i axios main.js中的引入和使用: import axios from 'axios' Vue.prototype.$http = axios ####get请求: <template> <div id="login"> <input type="text" name= ...
分类:
移动开发 时间:
2020-07-25 23:52:16
阅读次数:
157
在动态调试android的ndk程序的时候,发现很多程序都会反汇编错误,原来是ARM反汇编的模式没搞对。因为在动态调试的时候,ida Pro并没有去解析elf模块中的一些信息,造成了模块信息丢失,有时候反汇编就会错误。 类似下面这样: B6FC7DD0明显反汇编错了,成SVCMI指令了,解决方法也很 ...
分类:
其他好文 时间:
2020-07-25 09:57:35
阅读次数:
140
pycharm最常用的快捷键总结 阅读目录 一 常用快捷键 二 配置自己喜欢的快捷键 三 修改html的注释方式 四 按tab键代码自动补全 五 其它设置 工欲善其事必先利其器,Python开发利器Pycharm常用快捷键以及配置如下,相信有了这些快捷键,你的开发会事半功倍 回到顶部 一 常用快捷键 ...
分类:
其他好文 时间:
2020-07-25 09:24:15
阅读次数:
89
问题: An error occured while deploying the file. This probably means that the app contains ARM native code and your Genymotion device cannot run ARM ins ...
分类:
移动开发 时间:
2020-07-24 22:03:36
阅读次数:
160
(1).globl _start @_start是GNU汇编器的默认入口标签,.globl将_start生命为外部程序可访问的标签,.globl是GNU汇编的保留关键字,前面加点是GNU汇编的语法。 (2)_start:b start_code @arm上电之后执行的第一条指令,复位向量,跳转到st ...
分类:
其他好文 时间:
2020-07-24 22:03:22
阅读次数:
98