Giter Site home page Giter Site logo

Comments (10)

h2zero avatar h2zero commented on May 20, 2024 1

@ntwallace Thanks for reporting this. Please consider raising the issue in esp-idf as that file is tracked from there. In the meantime I will consider fixing it here for this library's purposes.

from nimble-arduino.

h2zero avatar h2zero commented on May 20, 2024

I think this is possible, I have not tested.

You would need to change this line in nimconfig.h to CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL.

Let me know if that works.

from nimble-arduino.

darshan-mirajkar avatar darshan-mirajkar commented on May 20, 2024

Sure... I am looking for module with PSRAM...I'll let you know

from nimble-arduino.

ntwallace avatar ntwallace commented on May 20, 2024

@h2zero changing that line results in:

lib/NimBLE/src/port/src/esp_nimble_mem.c:31:47: error: #elif with no expression
lib/NimBLE/src/port/src/esp_nimble_mem.c: In function 'nimble_platform_mem_calloc':
lib/NimBLE/src/port/src/esp_nimble_mem.c:44:47: error: #elif with no expression
*** [.pio/build/esp-wrover-kit/lib839/NimBLE/port/src/esp_nimble_mem.c.o] Error 1

It looks like in esp_nimble_mem.c all the #elifs are missing a defined. Adding that fixes the problem and the stack loads in PSRAM, e.g.:

#ifdef CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL
    return heap_caps_malloc(size, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT);
#elif defined CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL
    return heap_caps_malloc(size, MALLOC_CAP_SPIRAM|MALLOC_CAP_8BIT);
#elif defined CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT
    return heap_caps_malloc_prefer(size, 2, MALLOC_CAP_INTERNAL|MALLOC_CAP_IRAM_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT);

from nimble-arduino.

h2zero avatar h2zero commented on May 20, 2024

After looking at this again I think the fix is actually to define a value of 1 to the config define, such as:

#define CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL 1

I will add this line, commented, in nimconfig.

from nimble-arduino.

ntwallace avatar ntwallace commented on May 20, 2024

Ah good catch, makes sense. Thanks.

from nimble-arduino.

darshan-mirajkar avatar darshan-mirajkar commented on May 20, 2024

Nice one guys... I am also looking for hardware with PSRAM to test this.

from nimble-arduino.

ntwallace avatar ntwallace commented on May 20, 2024

@darshan-mirajkar Mouser has the official Dev Kit C for $11 USD, looks like they have stock in most countries.

from nimble-arduino.

darshan-mirajkar avatar darshan-mirajkar commented on May 20, 2024

Yes I know... I our application hardware we designed PSRAM with the help of expressif. Gerber is ready... Waiting for PCB. So we. Continue on that.

from nimble-arduino.

h2zero avatar h2zero commented on May 20, 2024

Closing this as resolved.

from nimble-arduino.

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.