ソースを参照

Fixing loading script for ARM targets and the teensy loader cli

simple
Jacob Alexander 10年前
コミット
e9aa3880a6
3個のファイルの変更4行の追加3行の削除
  1. 2
    2
      CMakeLists.txt
  2. 1
    0
      arm.cmake
  3. 1
    1
      setup.cmake

+ 2
- 2
CMakeLists.txt ファイルの表示

#| "avr" # Teensy++ 1.0 #| "avr" # Teensy++ 1.0
#| "avr" # Teensy++ 2.0 #| "avr" # Teensy++ 2.0
#| "arm" # Teensy 3.0 #| "arm" # Teensy 3.0
#set( COMPILER_FAMILY "arm" )
set( COMPILER_FAMILY "avr" )
set( COMPILER_FAMILY "arm" )
#set( COMPILER_FAMILY "avr" )


message( STATUS "Compiler Family:" ) message( STATUS "Compiler Family:" )
message( "${COMPILER_FAMILY}" ) message( "${COMPILER_FAMILY}" )

+ 1
- 0
arm.cmake ファイルの表示



message( STATUS "Chip Selected:" ) message( STATUS "Chip Selected:" )
message( "${CHIP}" ) message( "${CHIP}" )
set( MCU "${CHIP}" ) # For loading script compatibility




#| CPU Type #| CPU Type

+ 1
- 1
setup.cmake ファイルの表示

#| Please look at the {Scan,Macro,USB,Debug}/module.txt for information on the modules and how to create new ones #| Please look at the {Scan,Macro,USB,Debug}/module.txt for information on the modules and how to create new ones


##| Deals with acquiring the keypress information and turning it into a key index ##| Deals with acquiring the keypress information and turning it into a key index
set( ScanModule "avr-capsense" )
set( ScanModule "MBC-55X" )


##| Uses the key index and potentially applies special conditions to it, mapping it to a usb key code ##| Uses the key index and potentially applies special conditions to it, mapping it to a usb key code
set( MacroModule "buffer" ) set( MacroModule "buffer" )