RP2350 | 150 | 486848 | 1.24 | 11 | 82 | 279 | 1071 | 8782 | 42860 | |
RP2350 | 250 | 486848 | 1.24 | 7 | 49 | 167 | 643 | 5270 | 25717 | |
RP2350 | 300 | 486848 | 1.24 | 5 | 41 | 139 | 536 | 4391 | 21430 | |
RP2350(不稳定) | 320 | 486848 | 1.24 | 5 | 38 | 131 | 503 | 4116 | 20091 |
RP2350 圆周率测试 超频到300MHZ
发表评论
RP2350 | 150 | 486848 | 1.24 | 11 | 82 | 279 | 1071 | 8782 | 42860 | |
RP2350 | 250 | 486848 | 1.24 | 7 | 49 | 167 | 643 | 5270 | 25717 | |
RP2350 | 300 | 486848 | 1.24 | 5 | 41 | 139 | 536 | 4391 | 21430 | |
RP2350(不稳定) | 320 | 486848 | 1.24 | 5 | 38 | 131 | 503 | 4116 | 20091 |
// ==UserScript==
// @name GITHUB_Change
// @namespace https://*/
// @version 0.1.0
// @description github.com 替换为 bgithub.xyz
// @author You
// @match *://*/*
// ==/UserScript==
(function() {
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
var c=links[i].getAttribute("href");
if(c){
e=c.replace("https://github.com/","https://bgithub.xyz/")
links[i].setAttribute("href",e);
}
}
})();// ==UserScript==
// @name GITHUB_Change
// @namespace https://*/
// @version 0.1.0
// @description github.com 替换为 bgithub.xyz
// @author You
// @match *://*/*
// ==/UserScript==
(function() {
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
var c=links[i].getAttribute("href");
if(c){
e=c.replace("https://github.com/","https://bgithub.xyz/")
links[i].setAttribute("href",e);
}
}
})();
1111111111111111
Installing IDF Plugins using the Update site URL:
https://dl.espressif.com/dl/idf-eclipse-plugin/updates/latest/Installing IDF Plugins using the local archive file:
https://dl.espressif.com/dl/idf-eclipse-plugin/updates/com.espressif.idf.update-3.0.0.zipEspressif IDE
https://dl.espressif.com/dl/idf-eclipse-plugin/ide/Espressif-IDE-macosx-cocoa-aarch64-v3.0.0.dmg
https://dl.espressif.com/dl/idf-eclipse-plugin/ide/Espressif-IDE-macosx-cocoa-x86_64-v3.0.0.dmg
https://dl.espressif.com/dl/idf-eclipse-plugin/ide/Espressif-IDE-3.0.0-win32.win32.x86_64.zip
https://dl.espressif.com/dl/idf-eclipse-plugin/ide/Espressif-IDE-3.0.0-linux.gtk.x86_64.tar.gz
button=Pin(0,Pin.IN,Pin.PULL_UP)
def irq_button(pin):
time.sleep(0.3)
if button.value()==0:
#长按
print(11111)
else:
#断
print(77777)
print(pin)
button.irq(handler=irq_button,trigger=Pin.IRQ_FALLING)