Parcourir la source

Remove useless folder level

DricomDragon il y a 5 ans
Parent
commit
60aa8f02d2

steps/01-blink-led/1-build-as.py → prog/1-build-as.py


steps/01-blink-led/1-build.py → prog/1-build.py


steps/01-blink-led/1-verbose-build.py → prog/1-verbose-build.py


steps/01-blink-led/2-flash-via-usb.py → prog/2-flash-via-usb.py


steps/01-blink-led/2-hex-viewer.py → prog/2-hex-viewer.py


steps/01-blink-led/clean.py → prog/clean.py


steps/01-blink-led/display-obj-size.py → prog/display-obj-size.py


steps/01-blink-led/makefile.json → prog/makefile.json


steps/01-blink-led/sources/cortex-m4-control-registers.h → prog/sources/cortex-m4-control-registers.h


steps/01-blink-led/sources/reset-handler-sequential.s → prog/sources/reset-handler-sequential.s


steps/01-blink-led/sources/setup-loop.cpp → prog/sources/setup-loop.cpp


steps/01-blink-led/sources/setup-loop.h → prog/sources/setup-loop.h


steps/01-blink-led/sources/start-teensy-3-6.cpp → prog/sources/start-teensy-3-6.cpp


steps/01-blink-led/sources/start-teensy-3-6.h → prog/sources/start-teensy-3-6.h


steps/01-blink-led/sources/teensy-3-6-control-registers.h → prog/sources/teensy-3-6-control-registers.h


steps/01-blink-led/sources/teensy-3-6-interrupt-vectors.s → prog/sources/teensy-3-6-interrupt-vectors.s


steps/01-blink-led/sources/unused-interrupt.s → prog/sources/unused-interrupt.s


+ 0 - 23
steps/build-all.py

@@ -1,23 +0,0 @@
-#! /usr/bin/env python
-# -*- coding: UTF-8 -*-
-
-#------------------------------------------------------------------------------*
-# https://docs.python.org/2/library/subprocess.html#module-subprocess
-
-import subprocess
-import sys
-import os
-
-#------------------------------------------------------------------------------*
-
-#--- Get script absolute path
-scriptDir = os.path.dirname (os.path.abspath (sys.argv [0]))
-#--- Enumerate directories
-for name in os.listdir (scriptDir):
-   fname = os.path.join (scriptDir, name, "1-build.py")
-   if os.path.isfile (fname) :
-     returncode = subprocess.call ([fname])
-     if returncode != 0 :
-       sys.exit (returncode)
-
-#------------------------------------------------------------------------------*

+ 0 - 23
steps/clean-all.py

@@ -1,23 +0,0 @@
-#! /usr/bin/env python
-# -*- coding: UTF-8 -*-
-
-#------------------------------------------------------------------------------*
-# https://docs.python.org/2/library/subprocess.html#module-subprocess
-
-import subprocess
-import sys
-import os
-
-#------------------------------------------------------------------------------*
-
-#--- Get script absolute path
-scriptDir = os.path.dirname (os.path.abspath (sys.argv [0]))
-#--- Enumerate directories
-for name in os.listdir (scriptDir):
-   fname = os.path.join (scriptDir, name, "clean.py")
-   if os.path.isfile (fname) :
-     returncode = subprocess.call ([fname])
-     if returncode != 0 :
-       sys.exit (returncode)
-
-#------------------------------------------------------------------------------*