Coder Social home page Coder Social logo

Comments (10)

matth-x avatar matth-x commented on July 3, 2024

Are you sure the value of StopTxnSampledData was applied correcly? You can verify it with a GetConfiguration command from the server. Otherwise, I would believe that the microcontroller runs out of flash memory and therefore, the creation of the StopData JSON files fails. I verified this function here and couldn't reproduce the issue.

from microocpp.

matth-x avatar matth-x commented on July 3, 2024

By default, the number of StopData measurements is limited to 4 which could be too restrictive in your scenario. I quickly changed the corresponding definition. To keep more than 4 elements on flash, set the build flag MO_MAX_STOPTXDATA_LEN to a higher value.

from microocpp.

chandan-ultraviolette avatar chandan-ultraviolette commented on July 3, 2024

@matth-x I am bit confusion, I thought after 4 elements, code will erase the older ones and keep creating new log?

from microocpp.

chandan-ultraviolette avatar chandan-ultraviolette commented on July 3, 2024

@matth-x I recompiled my entire code working fine now, seems very strange. Also I don't want to create new file periodically, basically one file sd-connector_id-txNr-0 should update periodically so I can access only 1 file to know the history.

Also I checked the JSON sd-*.jsn, I was looking for JSON which has start time, end time (or duaration) and energy consumed wh till now, Arre you creating any such .jsn or any suggestion where to modify for same.

from microocpp.

matth-x avatar matth-x commented on July 3, 2024

The current strategy is to make a consecutive record of up to MO_MAX_STOPTXDATA_LEN -1 sd files and then to keep the most recent readings in the last sd file which gets updated afterwards. So the sd file with the highest sequence number always contains the most recent measurements.

from microocpp.

chandan-ultraviolette avatar chandan-ultraviolette commented on July 3, 2024

Understood, How can I access txNr so application can access the logs.

from microocpp.

matth-x avatar matth-x commented on July 3, 2024

The transaction store keeps track of all currently stored transactions. You can retrieve the range of corresponding txNr like that:

//necessary include
#include <MicroOcpp/Model/Transactions/TransactionStore.h>


if (auto context = getOcppContext()) {
    auto& model = context->getModel();

    if (auto txStore = model.getTransactionStore()) {
        int txNrBegin = txStore->getTxBegin(1 /* connectorId */); //first possible txNr
        unsigned int txNrCount= txStore->size(1 /* connectorId */); //number of stored transactions

        //iterate through all stored transactions by txNr
        for (unsigned int i = 0; i < txNrCount; i++) {
            int txNr = (txNrBegin + (int)i) % MAX_TX_CNT;
            //...
        }
    }
}

Edit: handle roll-over of txNrs, i.e. ranges like (99998, 99999, 0, 1)

from microocpp.

chandan-ultraviolette avatar chandan-ultraviolette commented on July 3, 2024

Thanks @matth-x , One doubt as post reboot if last state was charging, it continues the charging. I think mocpp also storing the energy consumed wh so how to fetch that number from mocpp stack so can start increasing the energy consumption from that number.

from microocpp.

chandan-ultraviolette avatar chandan-ultraviolette commented on July 3, 2024

@matth-x I noticed one bug related to SD files in 1.6.0 stack. Suppose StopTxnSampledData is false initially and after we do multiple transaction & enable enable StopTxnSampledData to true. It will not create the SD file for future transaction.

from microocpp.

matth-x avatar matth-x commented on July 3, 2024

Hi @chandan-ultraviolette, MicroOcpp does not terminate running transactions automatically when being initialized. This needs to be explicitly done by calling endTransaction() after mocpp_initialize() (not required to terminate it, but most chargers do it). Although the Start-/StopTx energy values are being stored by MicroOcpp once the operation has been initiated, that's not the case for the EnergyMeterInput over reboots. In general, the MeterValues, Start- and StopTx operations will always capture the original value of the EnergyMeterInput, there is no processing / correction step in between. It's the responsibility of the firmware to persist the energy register over reboots.

StopTxnSampledData should contain the measurands, like "Energy.Active.Import.Register".

from microocpp.

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.