Skip to content
Snippets Groups Projects
Commit e2936761 authored by Neil Gershenfeld (test)'s avatar Neil Gershenfeld (test)
Browse files

wip

parent aff1ed14
No related branches found
No related tags found
No related merge requests found
Pipeline #24282 passed
......@@ -12,8 +12,13 @@
# warranty is provided, and users accept all liability.
#
from machine import Pin
machine.freq(133000000)
p1 = Pin(1,Pin.IN)
p2 = Pin(2,Pin.OUT)
while (True):
p2.value(1-p1.value())
@micropython.native
def run():
p1 = Pin(1,Pin.IN)
p2 = Pin(2,Pin.OUT)
while (True):
p2(not p1())
machine.freq(250000000)
run()
......@@ -158,6 +158,13 @@ The GPIO test measures how quickly pins can communicate with a processor core; t
<td>December 2022</td>
</tr>
<tr>
<td>.350</td>
<td>RP2040</td>
<td><a href=GPIO/RP2040/ring.RP2040.py>MicroPython</a></td>
<td>December 2022</td>
</tr>
<tr>
<td>.345</td>
<td>Raspberry Pi 4</td>
......@@ -186,13 +193,6 @@ The GPIO test measures how quickly pins can communicate with a processor core; t
<td>December 2020</td>
</tr>
<tr>
<td>.039</td>
<td>RP2040</td>
<td><a href=GPIO/RP2040/ring.RP2040.py>MicroPython</a></td>
<td>December 2022</td>
</tr>
<tr>
<td>.029</td>
<td>Raspberry Pi 4</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment