mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-01-10 11:29:38 +00:00
esb mote type should use esb mote interfaces, not sky mote interfaces
This commit is contained in:
parent
01b0006e6f
commit
1c0e432969
@ -26,7 +26,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: ESBCompileDialog.java,v 1.1 2009/03/09 16:04:42 fros4943 Exp $
|
* $Id: ESBCompileDialog.java,v 1.2 2009/03/09 17:10:14 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja.mspmote;
|
package se.sics.cooja.mspmote;
|
||||||
@ -39,14 +39,13 @@ import se.sics.cooja.Simulation;
|
|||||||
import se.sics.cooja.dialogs.AbstractCompileDialog;
|
import se.sics.cooja.dialogs.AbstractCompileDialog;
|
||||||
import se.sics.cooja.interfaces.Mote2MoteRelations;
|
import se.sics.cooja.interfaces.Mote2MoteRelations;
|
||||||
import se.sics.cooja.interfaces.Position;
|
import se.sics.cooja.interfaces.Position;
|
||||||
|
import se.sics.cooja.mspmote.interfaces.ESBButton;
|
||||||
|
import se.sics.cooja.mspmote.interfaces.ESBLED;
|
||||||
|
import se.sics.cooja.mspmote.interfaces.ESBLog;
|
||||||
import se.sics.cooja.mspmote.interfaces.MspClock;
|
import se.sics.cooja.mspmote.interfaces.MspClock;
|
||||||
import se.sics.cooja.mspmote.interfaces.MspIPAddress;
|
import se.sics.cooja.mspmote.interfaces.MspIPAddress;
|
||||||
import se.sics.cooja.mspmote.interfaces.MspMoteID;
|
import se.sics.cooja.mspmote.interfaces.MspMoteID;
|
||||||
import se.sics.cooja.mspmote.interfaces.SkyButton;
|
import se.sics.cooja.mspmote.interfaces.TR1001Radio;
|
||||||
import se.sics.cooja.mspmote.interfaces.SkyByteRadio;
|
|
||||||
import se.sics.cooja.mspmote.interfaces.SkyFlash;
|
|
||||||
import se.sics.cooja.mspmote.interfaces.SkyLED;
|
|
||||||
import se.sics.cooja.mspmote.interfaces.SkySerial;
|
|
||||||
|
|
||||||
public class ESBCompileDialog extends AbstractCompileDialog {
|
public class ESBCompileDialog extends AbstractCompileDialog {
|
||||||
private static Logger logger = Logger.getLogger(ESBCompileDialog.class);
|
private static Logger logger = Logger.getLogger(ESBCompileDialog.class);
|
||||||
@ -77,16 +76,16 @@ public class ESBCompileDialog extends AbstractCompileDialog {
|
|||||||
if (moteIntfBox.getComponentCount() > 0) {
|
if (moteIntfBox.getComponentCount() > 0) {
|
||||||
selected = false;
|
selected = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
addMoteInterface(Position.class, selected);
|
addMoteInterface(Position.class, selected);
|
||||||
addMoteInterface(MspIPAddress.class, selected);
|
addMoteInterface(MspIPAddress.class, selected);
|
||||||
addMoteInterface(Mote2MoteRelations.class, selected);
|
addMoteInterface(ESBLog.class, selected);
|
||||||
addMoteInterface(MspClock.class, selected);
|
addMoteInterface(MspClock.class, selected);
|
||||||
|
addMoteInterface(ESBLED.class, selected);
|
||||||
|
addMoteInterface(ESBButton.class, selected);
|
||||||
addMoteInterface(MspMoteID.class, selected);
|
addMoteInterface(MspMoteID.class, selected);
|
||||||
addMoteInterface(SkyButton.class, selected);
|
addMoteInterface(TR1001Radio.class, selected);
|
||||||
addMoteInterface(SkyFlash.class, selected);
|
addMoteInterface(Mote2MoteRelations.class, selected);
|
||||||
addMoteInterface(SkyByteRadio.class, selected);
|
|
||||||
addMoteInterface(SkySerial.class, selected);
|
|
||||||
addMoteInterface(SkyLED.class, selected);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean canLoadFirmware(File file) {
|
public boolean canLoadFirmware(File file) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user