Giter Club home page Giter Club logo

Comments (5)

9600 avatar 9600 commented on August 18, 2024

Which LMS7 board would be used with Novena?

from limesuite.

rjonaitis avatar rjonaitis commented on August 18, 2024

I believe it's called MyriadRF7-Novena

from limesuite.

9600 avatar 9600 commented on August 18, 2024

Ah, I wasn't aware of this. I guess it might be nice if it were called Novena-RF7, or something else that seemed to fit with the naming of the LMS6 module, "Novena-RF". Otherwise it can get a bit confusing...

from limesuite.

guruofquality avatar guruofquality commented on August 18, 2024

FYI - This is complete with the exception of UpdateExternalBandSelect which has the old implementation commented out. It needs to be reimplemented around the new API hook:

void ConnectionNovenaRF7::UpdateExternalBandSelect(const size_t channel, const int trfBand, const int rfePath)
{
    //TODO...
    printf("Fill in the UpdateExternalBandSelect() function for NovenaRF7!\n");
    /*
    //in case of Novena board, need to update GPIO
    if(controlPort->GetInfo().device == LMS_DEV_NOVENA)
    {
        uint16_t regValue = SPI_read(0x0706) & 0xFFF8;
        //lms_gpio2 - tx output selection:
        //      0 - TX1_A and TX1_B (Band 1),
        //      1 - TX2_A and TX2_B (Band 2)
        regValue |= Get_SPI_Reg_bits(LMS7param(SEL_BAND2_TRF)) << 2; //gpio2
        //RX active paths
        //lms_gpio0 | lms_gpio1         RX_A        RX_B
        //  0           0       =>      no active path
        //  1           0       =>  LNAW_A      LNAW_B
        //  0           1       =>  LNAH_A      LNAH_B
        //  1           1       =>  LNAL_A      LNAL_B
        switch(Get_SPI_Reg_bits(LMS7param(SEL_PATH_RFE)))
        {
            //set gpio1:gpio0
            case 0: regValue |= 0x0; break;
            case 1: regValue |= 0x2; break;
            case 2: regValue |= 0x3; break;
            case 3: regValue |= 0x1; break;
        }
        SPI_write(0x0706, regValue);
    }
    */
}

from limesuite.

IgnasJarusevicius avatar IgnasJarusevicius commented on August 18, 2024

Novena support is discontinued in the current LimeSuite

from limesuite.

Related Issues (20)

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.