当前位置:首页 > Watrt 第12页
Watrt

Watrt 管理员

暂无介绍

260 篇文章 7 次评论

f1c100s编译启动所需的uboot,kernel,rootfs

Watrt3年前 (2022-08-19)LINUX18960
f1c100s编译启动所需的uboot,kernel,rootfs
 https://github.com/Icenowy/linux.git 有f1c100s-480272lcd-test和f1c100s分支, 然后自己手动修复一个 USB 问题,驱动就比较全了https://github.com/Lichee-Pi/linux.git 有nano-4.14-exp和nano-5.2-flash分支,用哪个合适个人画了块没有连接任何其他模块的F1C100S开发板,没有链接任何外设,本文是编译所有启动所需的三大件。(只要编...

排序方式

Watrt4年前 (2022-06-23)代码20770
排序方式
置换Array.prototype.swap = function(i, j) {      var temp = this[i];     this[i] = this[j];     this[j] = temp; }算法 - 冒泡排序Array....

micrpython编译javascript版

Watrt4年前 (2022-06-22)Wpython20780
micrpython编译javascript版
1、首先安装emsdkgit clone https://github.com/emscripten-core/emsdk.git cd <path-to-emsdk> git pull ./emsdk install latest ./emsdk activate latest source ./emsdk_env.sh2、获取micropython源码git clone&...

Configure & Build

Watrt4年前 (2022-06-02)LINUX22400
Configure & Build
Configure and build Linux kernel for Surface RTEditing kernel build configurationFirst run the command make ARCH=arm tegra_defconfigThis will create a standard kernel config for tegra SoC's.Open the file .config in the kernel source directory wit...

老是提示:newer kernel available 解决方法

Watrt4年前 (2022-05-15)LINUX37700
老是提示:newer kernel available 解决方法
这个是由于没有正确的安装内核造成的。可以直接关掉提示 sudo apt purge needrestart...

debootstrap报"Release signed by unknown key"错误的解决方法

Watrt4年前 (2022-05-11)LINUX34110
debootstrap报"Release signed by unknown key"错误的解决方法
1、下载最新的ASC文件:wget https://ftp-master.debian.org/keys/release-11.asc -qO- | gpg --import --no-default-keyring --keyring ./debian-release-11.gpg注意这里的11对应debian的版本号。我这里是debian11 (bullseye)2、debootstrap指定asc文件sudo&...

filerun汉化优化

Watrt4年前 (2022-03-16)代码48011
filerun汉化优化
filerun是一个非常棒的私有云盘软件,但是试了一下,前面界面汉化的不完整,我自己修改了一下。希望大家有用chinese.php<?php return array (   'trans' =>    array (     'Login Page' =>   ...

micropython 清除flash磁盘内容

Watrt4年前 (2022-03-14)Python24320
micropython 清除flash磁盘内容
对于ESP32,一般是在命令行中使用esptool.py清除flash,如果是在程序中想清除flash内容,或者更换文件系统格式,可以用下面方法:import uos uos.VfsFat.mkfs(bdev)如果使用 LFS2 文件系统,命令是import uos uos.VfsLfs2.mkfs(bdev)对于STM32,默认没有bdev设备,需要使用下面方法:import uos flash = pyb.Flash(start=0)u...