New board that support MWC code

Post Reply
multircshop
Posts: 2
Joined: Mon Aug 20, 2012 8:42 am

New board that support MWC code

Post by multircshop »

Hi,
I am looking at releasing another good alternative board that support MWC 2.1 code.

May I know who else I need to inform and also how to get the code to also have the default define for the new board?

Really like to get this board to the multirotor community and further accelerate the user of MWC 2.1 code and more.

Cheers!
MRC

PatrikE
Posts: 1976
Joined: Tue Apr 12, 2011 6:35 pm
Location: Sweden
Contact:

Re: New board that support MWC code

Post by PatrikE »

If you create a def for your board and present here.
Then one of the developers can add it to the project.

Example

Code: Select all

#define MY_9DOF  // Add some info about your board

#if defined(MY_9DOF)
  #define ITG3200
  #define BMA180
  #define HMC5883
  #define BMP085
  #define ACC_ORIENTATION(X, Y, Z)  {accADC[ROLL]  = -X; accADC[PITCH]  = -Y; accADC[YAW]  =  Z;}
  #define GYRO_ORIENTATION(X, Y, Z) {gyroADC[ROLL] =  Y; gyroADC[PITCH] = -X; gyroADC[YAW] = -Z;}
  #define MAG_ORIENTATION(X, Y, Z)  {magADC[ROLL]  =  X; magADC[PITCH]  =  Y; magADC[YAW]  = -Z;}
#endif

multircshop
Posts: 2
Joined: Mon Aug 20, 2012 8:42 am

Re: New board that support MWC code

Post by multircshop »

Thanks. Will do that when we have all the board ready.

Hope the board provides more alternative to users and all are happy.

Post Reply