Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
2bd758fe
Commit
2bd758fe
authored
9 years ago
by
Peter Hinch
Committed by
Damien George
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
drivers/sdcard: Add support for multi-block read/write; add SD test.
parent
67e81083
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
drivers/sdcard/sdcard.py
+68
-20
68 additions, 20 deletions
drivers/sdcard/sdcard.py
drivers/sdcard/sdtest.py
+57
-0
57 additions, 0 deletions
drivers/sdcard/sdtest.py
with
125 additions
and
20 deletions
drivers/sdcard/sdcard.py
+
68
−
20
View file @
2bd758fe
...
...
@@ -25,6 +25,9 @@ class SDCard:
#R1_ERASE_SEQUENCE_ERROR = const(1 << 4)
#R1_ADDRESS_ERROR = const(1 << 5)
#R1_PARAMETER_ERROR = const(1 << 6)
TOKEN_CMD25
=
const
(
0xfc
)
TOKEN_STOP_TRAN
=
const
(
0xfd
)
TOKEN_DATA
=
const
(
0xfe
)
def
__init__
(
self
,
spi
,
cs
):
self
.
spi
=
spi
...
...
@@ -136,6 +139,18 @@ class SDCard:
self
.
spi
.
send
(
0xff
)
return
-
1
def
cmd_nodata
(
self
,
cmd
):
self
.
spi
.
send
(
cmd
)
self
.
spi
.
send_recv
(
0xff
)
# ignore stuff byte
for
_
in
range
(
CMD_TIMEOUT
):
if
self
.
spi
.
send_recv
(
0xff
)[
0
]
==
0xff
:
self
.
cs
.
high
()
self
.
spi
.
send
(
0xff
)
return
0
# OK
self
.
cs
.
high
()
self
.
spi
.
send
(
0xff
)
return
1
# timeout
def
readinto
(
self
,
buf
):
self
.
cs
.
low
()
...
...
@@ -154,11 +169,11 @@ class SDCard:
self
.
cs
.
high
()
self
.
spi
.
send
(
0xff
)
def
write
(
self
,
buf
):
def
write
(
self
,
token
,
buf
):
self
.
cs
.
low
()
# send: start of block, data, checksum
self
.
spi
.
send
(
0xfe
)
self
.
spi
.
send
(
token
)
self
.
spi
.
send
(
buf
)
self
.
spi
.
send
(
0xff
)
self
.
spi
.
send
(
0xff
)
...
...
@@ -176,29 +191,62 @@ class SDCard:
self
.
cs
.
high
()
self
.
spi
.
send
(
0xff
)
def
write_token
(
self
,
token
):
self
.
cs
.
low
()
self
.
spi
.
send
(
token
)
self
.
spi
.
send
(
0xff
)
# wait for write to finish
while
self
.
spi
.
send_recv
(
0xff
)[
0
]
==
0
:
pass
self
.
cs
.
high
()
self
.
spi
.
send
(
0xff
)
def
count
(
self
):
return
self
.
sectors
def
readblocks
(
self
,
block_num
,
buf
):
# TODO support multiple block reads
assert
len
(
buf
)
==
512
# CMD17: set read address for single block
if
self
.
cmd
(
17
,
block_num
*
self
.
cdv
,
0
)
!=
0
:
return
1
# receive the data
self
.
readinto
(
buf
)
nblocks
,
err
=
divmod
(
len
(
buf
),
512
)
assert
nblocks
and
not
err
,
'
Buffer length is invalid
'
if
nblocks
==
1
:
# CMD17: set read address for single block
if
self
.
cmd
(
17
,
block_num
*
self
.
cdv
,
0
)
!=
0
:
return
1
# receive the data
self
.
readinto
(
buf
)
else
:
# CMD18: set read address for multiple blocks
if
self
.
cmd
(
18
,
block_num
*
self
.
cdv
,
0
)
!=
0
:
return
1
offset
=
0
mv
=
memoryview
(
buf
)
while
nblocks
:
self
.
readinto
(
mv
[
offset
:
offset
+
512
])
offset
+=
512
nblocks
-=
1
return
self
.
cmd_nodata
(
12
)
return
0
def
writeblocks
(
self
,
block_num
,
buf
):
# TODO support multiple block writes
assert
len
(
buf
)
==
512
# CMD24: set write address for single block
if
self
.
cmd
(
24
,
block_num
*
self
.
cdv
,
0
)
!=
0
:
return
1
# send the data
self
.
write
(
buf
)
nblocks
,
err
=
divmod
(
len
(
buf
),
512
)
assert
nblocks
and
not
err
,
'
Buffer length is invalid
'
if
nblocks
==
1
:
# CMD24: set write address for single block
if
self
.
cmd
(
24
,
block_num
*
self
.
cdv
,
0
)
!=
0
:
return
1
# send the data
self
.
write
(
TOKEN_DATA
,
buf
)
else
:
# CMD25: set write address for first block
if
self
.
cmd
(
25
,
block_num
*
self
.
cdv
,
0
)
!=
0
:
return
1
# send the data
offset
=
0
mv
=
memoryview
(
buf
)
while
nblocks
:
self
.
write
(
TOKEN_CMD25
,
mv
[
offset
:
offset
+
512
])
offset
+=
512
nblocks
-=
1
self
.
write_token
(
TOKEN_STOP_TRAN
)
return
0
This diff is collapsed.
Click to expand it.
drivers/sdcard/sdtest.py
0 → 100644
+
57
−
0
View file @
2bd758fe
# Test for sdcard block protocol
# Peter hinch 30th Jan 2016
import
os
,
sdcard
,
pyb
def
sdtest
():
sd
=
sdcard
.
SDCard
(
pyb
.
SPI
(
1
),
pyb
.
Pin
.
board
.
X21
)
# Compatible with PCB
pyb
.
mount
(
sd
,
'
/fc
'
)
print
(
'
Filesystem check
'
)
print
(
os
.
listdir
(
'
/fc
'
))
line
=
'
abcdefghijklmnopqrstuvwxyz
\n
'
lines
=
line
*
200
# 5400 chars
short
=
'
1234567890
\n
'
fn
=
'
/fc/rats.txt
'
print
()
print
(
'
Multiple block read/write
'
)
with
open
(
fn
,
'
w
'
)
as
f
:
n
=
f
.
write
(
lines
)
print
(
n
,
'
bytes written
'
)
n
=
f
.
write
(
short
)
print
(
n
,
'
bytes written
'
)
n
=
f
.
write
(
lines
)
print
(
n
,
'
bytes written
'
)
with
open
(
fn
,
'
r
'
)
as
f
:
result1
=
f
.
read
()
print
(
len
(
result1
),
'
bytes read
'
)
fn
=
'
/fc/rats1.txt
'
print
()
print
(
'
Single block read/write
'
)
with
open
(
fn
,
'
w
'
)
as
f
:
n
=
f
.
write
(
short
)
# one block
print
(
n
,
'
bytes written
'
)
with
open
(
fn
,
'
r
'
)
as
f
:
result2
=
f
.
read
()
print
(
len
(
result2
),
'
bytes read
'
)
pyb
.
mount
(
None
,
'
/fc
'
)
print
()
print
(
'
Verifying data read back
'
)
success
=
True
if
result1
==
''
.
join
((
lines
,
short
,
lines
)):
print
(
'
Large file Pass
'
)
else
:
print
(
'
Large file Fail
'
)
success
=
False
if
result2
==
short
:
print
(
'
Small file Pass
'
)
else
:
print
(
'
Small file Fail
'
)
success
=
False
print
()
print
(
'
Tests
'
,
'
passed
'
if
success
else
'
failed
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment