Giter VIP home page Giter VIP logo

analogdevicesinc / eval-adicup360 Goto Github PK

View Code? Open in Web Editor NEW
58.0 53.0 149.0 17.92 MB

Detailed User Guide for the EVAL-ADICUP360, showing how to use the software and hardware in combination. As well as a link to download the CrossCore Embedded Studio IDE.

Home Page: https://wiki.analog.com/resources/eval/user-guides/eval-adicup360

License: BSD 3-Clause "New" or "Revised" License

C++ 10.88% C 88.70% Assembly 0.35% Batchfile 0.05% Shell 0.02%

eval-adicup360's Introduction

EVAL-ADICUP360 Read Me

Build Status

Overview

The EVAL-ADICUP360 is about an open source prototyping platform that can be used in combination with hardware and software to achieve application level goals. The platform is pin compatible with Arduino Uno shields and PMOD expansion modules. The EVAL-ADICUP360 has dual 24-bit sigma deltas analog to digital converters inside an ARM Cortex-M3, which has I2C, SPI, and UART peripherals available.

User Guide & Downloads

A Detailed User Guide for the EVAL-ADICUP360, showing how to set up the hardware and use the software in combination, can be found on the Analog Devices wiki site (https://wiki.analog.com/resources/eval/user-guides/eval-adicup360). Links on where to download the CrossCore Embedded Studio IDE and how to install the software can also be found using that link. A step by step understanding of the tool, from how to import projects, to creating debug sessions, and creating your own projects is outlined on the wiki.

Purchase

For details on where and how to purchase the EVAL-ADICUP360, please visit the Analog Devices website (http://www.analog.com/en/design-center/evaluation-hardware-and-software/evaluation-boards-kits/EVAL-ADICUP360.html ) or any of Analog Devices authorized distribution partners.

3rd Party Arduino Libraries

We've also had a user create "Arduino-like libraries" for the EVAL-ADICUP360. So if you are more familiar with Arduino and would like to use those libraries, please check out Marcus's Git repository (https://github.com/MB3hel/ADuCM360-ArduinoLike ). IMPORTANT NOTE: Analog Devices has not tested these libraries and we don't support these libraries. These have been created by a third party, and are provided to users. Any feature or function issues with these libraries should be directed back to Marcus.

eval-adicup360's People

Contributors

acozma avatar adrimbarean avatar amiclaus avatar andrew-mclachlan avatar andrewmclachlanadi avatar bbushey avatar ciprianregus avatar cokiemon avatar mhennerich avatar mvispute avatar rbolboac avatar stefpopa avatar vlupei avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

eval-adicup360's Issues

Why dose this work?

Why dose this work for you?
Because here: https://github.com/analogdevicesinc/EVAL-ADICUP360/blob/master/projects/ADuCM360_demo_cn0391/src/CN0391.cpp#L257

   for(i = 0; i < 4; i++){
      // Set Channel_0 register 0x09
      regNr = static_cast<AD7124::ad7124_registers>(AD7124::AD7124_Channel_4 + i);
      setValue = ADC.ReadDeviceRegister(regNr);
      // here setValue is 0x8001 for channel 0 and 0x0001 for every oder channel 
      setValue &= (~(uint32_t)AD7124_CH_MAP_REG_CH_ENABLE); //Disable channel
      // after that line for channel 0 0x8001 changes to 0x0001 and the line dose nothing for the other 
channels

      setValue |= AD7124_CH_MAP_REG_SETUP(0);             // Select setup0
      // now set the AIN values so for example if i would like to set AIN4 the first bit would not be cleared
      // i made some custom implementation with this ADC and I had this errror
      // so generall I think it is better to use = for set setup not |= 
      //         setValue = AD7124_CH_MAP_REG_SETUP(0);             // Select setup0
      setValue |= AD7124_CH_MAP_REG_AINP(2*i + 1);         // Set AIN1+, AIN3+, AIN5+, AIN7+

I am wondering why you do not have problems with the correct AINx settings.

Wrong bit shift in acceleration result

In "uint32_t SPI_Read(uint8_t ui8address, enRegsNum enRegs)" (in file "Communication.c") the bytes of the X,Y,Z axis data register are incorrectly composed. This results in an incorrect result for the acceleration in X,Y,Z axis.
communication

The following code is proposed for ui32Result
ui32Result= ((ui32valueH << 16) | (ui32valueM << 8) | ui32valueL); /* Set read result*/

instead of the current code:
ui32Result = ((ui32valueH << 16) | (ui32valueL << 8) | ui32valueL); /* Set read result*/

website of board manager in Arduino

Hi,

I have just got this ADICUP360 board, and i would like to give an evaluation through Arduino.
However, I can not find this board in board manager, so i am wondering if you can give me the board manager URL of this board.

Have a nice day

Comment differs from code.

In:

   // Set IO_Control_2
[...]
    setValue |= AD7124_8_IO_CTRL2_REG_GPIO_VBIAS7; // enable AIN3 as digital output
[...]

The comment doesn't resemble the code.
// enable bias voltage on AIN7
would fit better.

UART Streaming for EVAL-ADXL355-PMDZ data

I tested the example of ADuCM360_demo_adxl355_pmdz.
And I succeeded to get the value of EVAL-ADXL355-PMDZ !!!
However, I must tap button to receive the next data.
Is there any example to get the data continuously?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.