Quote:
Originally Posted by taichichuan
So, I'd look for a symbol name clash between the two images. You can use the "nm-ppc" facility from the DOS command line or the lkup "symbolname" facility from the VxWorks shell (the RS-232 terminal or the "host shell" -- the "->i" button on the menu bar).
|
How would I do this?
I've managed to strip it down considerably, to the DriverStation::GetInstance()->GetHighPriorityDashboardPacker() call. If you compile the zomb stuff into an out, you can't enable. If you compile the zomb into the main program, you can enable
ZomB section:
Code:
#include "Dashboard.h"
#include "DriverStation.h"
class ZomBDashboardPacketSender
{
Dashboard &hp;
public:
ZomBDashboardPacketSender();
~ZomBDashboardPacketSender(){}
};
ZomBDashboardPacketSender::ZomBDashboardPacketSender() :
hp(DriverStation::GetInstance()->GetHighPriorityDashboardPacker()){}
All you need to do is to make an instance of this class. Code attached