Changeset 37 in pacpussensors for trunk/Alasca


Ignore:
Timestamp:
02/18/14 11:54:55 (10 years ago)
Author:
cfougera
Message:

First commit of Sick lidars interfaces.

Location:
trunk/Alasca
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Alasca/AlascaData.h

    r1 r37  
    4545struct ScanAlascaData
    4646{
    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])
     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])
    5151    uint32_t nbPoint;                   // number of points
    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
     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
    5555};
    5656
  • trunk/Alasca/CMakeLists.txt

    r27 r37  
    33################################################################################
    44add_definitions( -DALASCAXT_EXPORTS )
     5
     6
     7
     8# ========================================
     9# Configure qt4
     10# ========================================
     11if(QT4_FOUND)
     12  set(QT_USE_QTXML true)
     13  set(QT_USE_QTNETWORK true)
     14  include(${QT_USE_FILE})
     15else()
     16  message(ERROR "Qt4 needed")
     17endif()
    518
    619# ========================================
     
    2538)
    2639
    27 message (STATUS ${PACPUS_LIB_DIR})
    2840
    2941pacpus_plugin(PLUGIN_CPP PLUGIN_H ${PROJECT_NAME} )
     
    5971# Call MOC
    6072# ========================================
    61 qt_wrap_cpp(
     73qt4_wrap_cpp(
    6274    PROJECT_MOC_SRCS
    6375    ${FILES_TO_MOC}
    6476)
    6577
    66 qt_wrap_ui(
     78qt4_wrap_ui(
    6779    PROJECT_UI_SRCS
    6880    ${UI_FILES}
Note: See TracChangeset for help on using the changeset viewer.