Changeset 37 in pacpussensors for trunk/Alasca
- Timestamp:
- Feb 18, 2014, 11:54:55 AM (11 years ago)
- Location:
- trunk/Alasca
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Alasca/AlascaData.h
r1 r37 45 45 struct ScanAlascaData 46 46 { 47 uint8_t scannertype; // Alasca has type 248 uint32_t timeStart; // time start of the scan49 float startAngle; 50 float endAngle; 47 uint8_t scannertype; // Alasca has type 2 48 uint32_t timeStart; // time start of the scan 49 float startAngle; // the start angle of the measurement (in [rad*e4]) 50 float endAngle; // the stop angle of the measurement (in [rad*e4]) 51 51 uint32_t nbPoint; // number of points 52 road_time_t time; 53 road_timerange_t timerange; 54 ScanPoint point[MAX_SCAN_POINT]; 52 road_time_t time; // DBT timestamp 53 road_timerange_t timerange; // DBT timerange 54 ScanPoint point[MAX_SCAN_POINT];// the data, see struct ScanPoint 55 55 }; 56 56 -
trunk/Alasca/CMakeLists.txt
r27 r37 3 3 ################################################################################ 4 4 add_definitions( -DALASCAXT_EXPORTS ) 5 6 7 8 # ======================================== 9 # Configure qt4 10 # ======================================== 11 if(QT4_FOUND) 12 set(QT_USE_QTXML true) 13 set(QT_USE_QTNETWORK true) 14 include(${QT_USE_FILE}) 15 else() 16 message(ERROR "Qt4 needed") 17 endif() 5 18 6 19 # ======================================== … … 25 38 ) 26 39 27 message (STATUS ${PACPUS_LIB_DIR})28 40 29 41 pacpus_plugin(PLUGIN_CPP PLUGIN_H ${PROJECT_NAME} ) … … 59 71 # Call MOC 60 72 # ======================================== 61 qt _wrap_cpp(73 qt4_wrap_cpp( 62 74 PROJECT_MOC_SRCS 63 75 ${FILES_TO_MOC} 64 76 ) 65 77 66 qt _wrap_ui(78 qt4_wrap_ui( 67 79 PROJECT_UI_SRCS 68 80 ${UI_FILES}
Note:
See TracChangeset
for help on using the changeset viewer.