The temperature conversion code should take in the ADC value received by the microcontroller and convert it to all three usable temps.
31 lines
1.5 KiB
PowerShell
31 lines
1.5 KiB
PowerShell
param([String]$debugfile = "");
|
|
|
|
# This powershell file has been generated by the IAR Embedded Workbench
|
|
# C - SPY Debugger, as an aid to preparing a command line for running
|
|
# the cspybat command line utility using the appropriate settings.
|
|
#
|
|
# Note that this file is generated every time a new debug session
|
|
# is initialized, so you may want to move or rename the file before
|
|
# making changes.
|
|
#
|
|
# You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed
|
|
# by the name of the debug file (usually an ELF / DWARF or UBROF file).
|
|
#
|
|
# Read about available command line parameters in the C - SPY Debugging
|
|
# Guide. Hints about additional command line parameters that may be
|
|
# useful in specific cases :
|
|
# --download_only Downloads a code image without starting a debug
|
|
# session afterwards.
|
|
# --silent Omits the sign - on message.
|
|
# --timeout Limits the maximum allowed execution time.
|
|
#
|
|
|
|
|
|
if ($debugfile -eq "")
|
|
{
|
|
& "C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.2\common\bin\cspybat" -f "C:\Users\Maxunm\Desktop\TShirtPress\EWARM\settings\Press.Press.general.xcl" --backend -f "C:\Users\Maxunm\Desktop\TShirtPress\EWARM\settings\Press.Press.driver.xcl"
|
|
}
|
|
else
|
|
{
|
|
& "C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.2\common\bin\cspybat" -f "C:\Users\Maxunm\Desktop\TShirtPress\EWARM\settings\Press.Press.general.xcl" --debug_file=$debugfile --backend -f "C:\Users\Maxunm\Desktop\TShirtPress\EWARM\settings\Press.Press.driver.xcl"
|
|
}
|