Skip to content

Commit

Permalink
Merge pull request f4exb#1916 from srcejon/freq_scanner
Browse files Browse the repository at this point in the history
Radiosonde CSV header fix
  • Loading branch information
f4exb authored Dec 7, 2023
2 parents cb97263 + ebb0872 commit 609fff1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/sdrangel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,3 @@ jobs:
run: |
cd build
make -j3
- name: Stop XProtectBehaviorService
run: |
echo "killing XProject as it can interfere with hdiutil"; sudo pkill -9 XProtect >/dev/null || true;
echo "waiting..."; while pgrep XProtect; do sleep 3; done;
- name: Build DMG
run: |
cd build
make package -j3
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ steps.get_filename.outputs.filename }}.dmg
path: ${{ github.workspace }}/build/${{ steps.get_filename.outputs.filename }}.dmg
2 changes: 1 addition & 1 deletion plugins/channelrx/demodradiosonde/radiosondedemod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ void RadiosondeDemod::applySettings(const RadiosondeDemodSettings& settings, boo
if (newFile)
{
// Write header
m_logStream << "Date,Time,Data,Serial,Frame,Lat,Lon,Alt (m),Speed (m/s),V/R (m/s),Heading,P (hPa),T (C), U (%)\n";
m_logStream << "Date,Time,Data,Serial,Frame,Lat,Lon,Alt (m),Speed (m/s),V/R (m/s),Heading,P (hPa),T (C),U (%)\n";
}
}
else
Expand Down
4 changes: 2 additions & 2 deletions plugins/samplesource/sdrplayv3/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ target_link_libraries(${TARGET_NAME}
${SDRPLAY_LIBRARIES}
)

# Library name is wrong in 3.12 release
# /usr/local/lib doesn't seem to be searched by default
if (APPLE AND (CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL arm64))
add_custom_command(TARGET ${TARGET_NAME}
POST_BUILD COMMAND
${CMAKE_INSTALL_NAME_TOOL} -change libsdrplay_api_arm64.so.3.12 /Library/SDRplayAPI/3.12.0/lib/libsdrplay_api.so.3.12.0 $<TARGET_FILE:${TARGET_NAME}>)
${CMAKE_INSTALL_NAME_TOOL} -change libsdrplay_api.so.3.12 /usr/local/lib/libsdrplay_api.so.3.12 $<TARGET_FILE:${TARGET_NAME}>)
endif()

install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
Expand Down

0 comments on commit 609fff1

Please sign in to comment.