Skip to content

Commit 4a08fd5

Browse files
committed
Move sw4stm32 into its own dir
1 parent beb9c6f commit 4a08fd5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tools/export/sw4stm32.py renamed to tools/export/sw4stm32/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17-
from exporters import Exporter
1817
from os.path import splitext, basename, join
1918
from random import randint
2019
from tools.utils import mkdir
20+
from tools.export.exporters import Exporter
2121

2222

2323
class Sw4STM32(Exporter):
@@ -114,6 +114,6 @@ def generate(self):
114114
}
115115

116116
self.__gen_dir('.settings')
117-
self.gen_file('sw4stm32_language_settings_commom.tmpl', ctx, '.settings/language.settings.xml')
118-
self.gen_file('sw4stm32_project_common.tmpl', ctx, '.project')
119-
self.gen_file('sw4stm32_cproject_common.tmpl', ctx, '.cproject')
117+
self.gen_file('sw4stm32/language_settings_commom.tmpl', ctx, '.settings/language.settings.xml')
118+
self.gen_file('sw4stm32/project_common.tmpl', ctx, '.project')
119+
self.gen_file('sw4stm32/cproject_common.tmpl', ctx, '.cproject')

0 commit comments

Comments
 (0)