/** @details * The digital and motor ports can (should) be configured here. */ void vexUserSetup() { vexDigitalConfigure( dConfig, DIG_CONFIG_SIZE( dConfig ) ); vexMotorConfigure( mConfig, MOT_CONFIG_SIZE( mConfig ) ); // read user parameters userp = vexFlashUserParamRead(); }
// Initialize the digital ports void vexUserSetup() { vexDigitalConfigure( dConfig, DIG_CONFIG_SIZE( dConfig ) ); vexMotorConfigure( mConfig, MOT_CONFIG_SIZE( mConfig ) ); }
// Initialize the digital ports void vexUserSetup() { vexDigitalConfigure( dConfig, DIG_CONFIG_SIZE( dConfig ) ); }
void vexCortexDefaultSetup(void) { vexDigitalConfigure( dConfig, DIG_CONFIG_SIZE( dConfig ) ); vexMotorConfigure( mConfig, MOT_CONFIG_SIZE( mConfig ) ); }