Skip to content

Commit 23c8e36

Browse files
committed
Comment out writes from examples
1 parent b9e888a commit 23c8e36

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/fram_i2c_simpletest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@
3636
## a buffer the size of slice, which may cause
3737
## problems on memory-constrained platforms.
3838

39-
values = list(range(100)) # or bytearray or tuple
40-
fram[0:100] = values
41-
print(fram[0:100])
39+
# values = list(range(100)) # or bytearray or tuple
40+
# fram[0:100] = values
41+
# print(fram[0:100])

examples/fram_spi_simpletest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
## a buffer the size of 'length', which may cause
2828
## problems on memory-constrained platforms.
2929

30-
values = list(range(100)) # or bytearray or tuple
31-
fram[0:100] = values
32-
print(fram[0:100])
30+
# values = list(range(100)) # or bytearray or tuple
31+
# fram[0:100] = values
32+
# print(fram[0:100])

0 commit comments

Comments
 (0)