19 lines
464 B
C++
19 lines
464 B
C++
#include "rte_SquareDebug_parameters.h"
|
|
#include "SquareDebug.h"
|
|
#include "SquareDebug_cal.h"
|
|
|
|
extern SquareDebug_cal_type SquareDebug_cal_impl;
|
|
namespace slrealtime
|
|
{
|
|
/* Description of SEGMENTS */
|
|
SegmentVector segmentInfo {
|
|
{ (void*)&SquareDebug_cal_impl, (void**)&SquareDebug_cal, sizeof
|
|
(SquareDebug_cal_type), 2 }
|
|
};
|
|
|
|
SegmentVector &getSegmentVector(void)
|
|
{
|
|
return segmentInfo;
|
|
}
|
|
} // slrealtime
|