demo project

Dependencies:   AX-12A Dynamixel mbed iothub_client EthernetInterface NTPClient ConfigFile SDFileSystem iothub_amqp_transport mbed-rtos proton-c-mbed wolfSSL

main.cpp

Committer:
henryrawas
Date:
2016-02-01
Revision:
26:6def77499117
Parent:
24:f6aa0e64c5e1
Child:
27:4239713d9690

File content as of revision 26:6def77499117:

// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

#include "mbed.h"
#include "rtos.h"

#include "ControllerIo.h"


extern void PrepareController();
extern void RunController();
extern bool StartIothubThread();


int main()
{
    printf("**********************\r\n");
    printf("RobotArmDemo start\r\n");
    printf("**********************\r\n");

    ShowLedGreen();
    
    // prepare the motion sequences
    PrepareController();
    
    // start IotHub connection
    StartIothubThread();
    
    // time delay is to allow the position encoders to come online after initial power supply event ~ 5 secs
    Thread::wait(5000);
    
    printf("Initialization done. Ready to run. \r\n");

    // try running this thread at a higher priority
    osThreadId maintid = osThreadGetId();
    osThreadSetPriority(maintid, osPriorityHigh);
    
    RunController(); 
}