mirror of
https://github.com/littlefs-project/littlefs.git
synced 2025-12-01 12:20:02 +00:00
scripts: dbgtag.py: Fixed overlooked LFSR -> LFS3 prefix
Not sure how this was missed, but tags should start with LFS3_ now.
This commit is contained in:
@ -245,12 +245,12 @@ def list_tags():
|
|||||||
# find widths for alignment
|
# find widths for alignment
|
||||||
w = [0]
|
w = [0]
|
||||||
for n, t, c in tags:
|
for n, t, c in tags:
|
||||||
w[0] = max(w[0], len('LFSR_'+n))
|
w[0] = max(w[0], len('LFS3_'+n))
|
||||||
|
|
||||||
# print
|
# print
|
||||||
for n, t, c in tags:
|
for n, t, c in tags:
|
||||||
print('%-*s %s' % (
|
print('%-*s %s' % (
|
||||||
w[0], 'LFSR_'+n,
|
w[0], 'LFS3_'+n,
|
||||||
c))
|
c))
|
||||||
|
|
||||||
def dbg_tags(data, *,
|
def dbg_tags(data, *,
|
||||||
|
|||||||
Reference in New Issue
Block a user