"Couldn't reset factory" uniquement lorsque ma carte SD est branché...

Bonjour,
En effet je réalise un prototype très simple ou j'aimerai Datalogger un signal sur une carte SD puis le transférer en bluetooth, j'ai donc fais 2 fonctions :

  • Une pour le Datalogger qui marche très bien
  • L'autre pour le bluetooth qui marche aussi

Le problème : lorsque je met les 2 dans un meme code il y a ce problème de "couldn't reset factory" comme si la carte SD bloquait le bon fonctionnement du bluetooth...

Merci

Avez vous
a) un schéma de branchement
b) un exemple de votre code (celui qui ne marche pas)
?






voila pour les branchements et le code est pour transférer se qui est sur la carte SD en bluetooth sur l'application

Désolé voila !

Hallucinant! :grin:

Voir ici

sinon kamill t'as regardé un peu? ^^

J'ai regardé très peu, les visionneuses de jpg étant très lentes et mangeant hénaurmément de ressources, sans la possibilité de chercher des mots clés dans un texte.
Et j'ai éré très satisfait que kamill proteste.

Okkk je vais remettre le code :

#include <stdio.h>
#include <string.h>
#include <SD.h>
#include <Arduino.h>
#include <SPI.h>
#if not defined (_VARIANT_ARDUINO_DUE_X_) && not defined (_VARIANT_ARDUINO_ZERO_)
#include <SoftwareSerial.h>
#endif

const int chipSelect = 4;
int compteur = 1;
int state;
int t = 1;
int p = 0;
int a = 0;
int b = 0;
int c = 0;
int k = 0;

#include "Adafruit_BLE.h"
#include "Adafruit_BluefruitLE_SPI.h"
#include "Adafruit_BluefruitLE_UART.h"
#include "BluefruitConfig.h"
#include "sine.h"

/*=========================================================================
    APPLICATION SETTINGS
      FACTORYRESET_ENABLE       Perform a factory reset when running this sketch
     
                                Enabling this will put your Bluefruit LE module
                              in a 'known good' state and clear any config
                              data set in previous sketches or projects, so
                                running this at least once is a good idea.
     
                                When deploying your project, however, you will
                              want to disable factory reset by setting this
                              value to 0.  If you are making changes to your
                                Bluefruit LE device via AT commands, and those
                              changes aren't persisting across resets, this
                              is the reason why.  Factory reset will erase
                              the non-volatile memory where config data is
                              stored, setting it back to factory default
                              values.
         
                                Some sketches that require you to bond to a
                              central device (HID mouse, keyboard, etc.)
                              won't work at all with this feature enabled
                              since the factory reset will clear all of the
                              bonding data stored on the chip, meaning the
                              central device won't be able to reconnect.
    MINIMUM_FIRMWARE_VERSION  Minimum firmware version to have some new features
    MODE_LED_BEHAVIOUR        LED activity, valid options are
                              "DISABLE" or "MODE" or "BLEUART" or
                              "HWUART"  or "SPI"  or "MANUAL"
    -----------------------------------------------------------------------*/
#define FACTORYRESET_ENABLE         1
#define MINIMUM_FIRMWARE_VERSION    "0.6.6"
#define MODE_LED_BEHAVIOUR          "MODE"
#define SEND_SECOND_PLOT            0
/*=========================================================================*/

// Create the bluefruit object, either software serial...uncomment these lines

//SoftwareSerial bluefruitSS = SoftwareSerial(BLUEFRUIT_SWUART_TXD_PIN, BLUEFRUIT_SWUART_RXD_PIN);
//Adafruit_BluefruitLE_UART ble(bluefruitSS, BLUEFRUIT_UART_MODE_PIN,
 //                     BLUEFRUIT_UART_CTS_PIN, BLUEFRUIT_UART_RTS_PIN);


/* ...or hardware serial, which does not need the RTS/CTS pins. Uncomment this line */
//Adafruit_BluefruitLE_UART ble(BLUEFRUIT_HWSERIAL_NAME, BLUEFRUIT_UART_MODE_PIN);

/* ...hardware SPI, using SCK/MOSI/MISO hardware SPI pins and then user selected CS/IRQ/RST */
Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_CS, BLUEFRUIT_SPI_IRQ, BLUEFRUIT_SPI_RST);

/* ...software SPI, using SCK/MOSI/MISO user-defined SPI pins and then user selected CS/IRQ/RST */
//Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_SCK, BLUEFRUIT_SPI_MISO,
//                            BLUEFRUIT_SPI_MOSI, BLUEFRUIT_SPI_CS,
 //                           BLUEFRUIT_SPI_IRQ, BLUEFRUIT_SPI_RST);

//SoftwareSerial bluefruitSS = SoftwareSerial(BLUEFRUIT_SWUART_TXD_PIN, BLUEFRUIT_SWUART_RXD_PIN);


// A small helper
void error(const __FlashStringHelper*err) {
  Serial.println(err);
  while (1);
}

/**************************************************************************/
/*!
    @brief  Sets up the HW an the BLE module (this function is called
            automatically on startup)
*/
/**************************************************************************/
void setup(void)
{
  //  while (!Serial);  // required for Flora & Micro
  delay(500);

  Serial.begin(115200);
  Serial.println(F("Adafruit Bluefruit Command <-> Data Mode Example"));
  Serial.println(F("------------------------------------------------"));

  /* Initialise the module */
  Serial.print(F("Initialising the Bluefruit LE module: "));

  if ( !ble.begin(VERBOSE_MODE) )
  {
    error(F("Couldn't find Bluefruit, make sure it's in CoMmanD mode & check wiring?"));
  }
  Serial.println( F("OK!") );

  if ( FACTORYRESET_ENABLE )
  {
    /* Perform a factory reset to make sure everything is in a known state */
    Serial.println(F("Performing a factory reset: "));
    if ( ! ble.factoryReset() ) {
      error(F("Couldn't factory reset"));
    }
  }

  /* Disable command echo from Bluefruit */
  ble.echo(false);

  Serial.println("Requesting Bluefruit info:");
  /* Print Bluefruit information */
  ble.info();

  Serial.println(F("Please use Adafruit Bluefruit LE app to connect in UART mode"));
  Serial.println(F("Then Enter characters to send to Bluefruit"));
  Serial.println();

  ble.verbose(false);  // debug info is a little annoying after this point!

  /* Wait for connection */
  while (! ble.isConnected()) {
    delay(500);
  }

  Serial.println(F("******************************"));

  // LED Activity command is only supported from 0.6.6
  if ( ble.isVersionAtLeast(MINIMUM_FIRMWARE_VERSION) )
  {
    // Change Mode LED Activity
    Serial.println(F("Change LED activity to " MODE_LED_BEHAVIOUR));
    ble.sendCommandCheckOK("AT+HWModeLED=" MODE_LED_BEHAVIOUR);
  }

  // Set module to DATA mode
  Serial.println( F("Switching to DATA mode!") );
  ble.setMode(BLUEFRUIT_MODE_DATA);

  Serial.println(F("******************************"));


  File dataFile = SD.open("datalog.txt");

  Serial.println("hihaa");
  if (dataFile) {
    while (dataFile.available()) {
      Serial.write(dataFile.read());
      Serial.println("hihi");
      ble.print(dataFile.read());
    }
    dataFile.close();
  }
    
  if (SEND_SECOND_PLOT) {               //change SEND_SECOND_PLOT to 1 for add'l sine plot //stay within bounds of sine table
    ble.print(",");                     //print delimiter for second plot
    ble.print(sine_wave[sineIndex]);    //print value from sine table
    sineIndex++;                        //increment index
  }

  ble.println();  //print newline so app knows to plot the values
    
}


void loop(void) {

   
  
}

voila merci beaucoup :slight_smile:

Vous incluez un fichier BleuFruitConfig.h, qui, selon Adafruit_BLE_SPI/BluefruitConfig.h at master · collin80/Adafruit_BLE_SPI · GitHub, contient ligne 46
#define BLUEFRUIT_SPI_RST 4 // Optional but recommended, set to -1 if unused

Par ailleurs, vous avez une ligne

const int chipSelect = 4;

Donc je parie que chipSelect est partagée induement entre le BT, où il sert de reset, et quelque chose -la SD?- , où il sert de chipSelect... Est ce souhaitable?

Faudrait aussi voir votre câblage....

La photo est celle qui fait 77K juste au dessus !

Ok je viens de voir ca je vais le modifier merci!! je vous tiens au courant

Le problème c'est que pour l'initialisation de la SD j'en ai besoin et pour le bouton reset du BT aussi..
Pensez-vous que je peux changer le pin de l'un d'entre eux??
Merci

Ce sont deux fonctions (un chip select et un reset, si j'en crois vos notations) differentes: je leur affecterais des pattes differentes (et je verifierais sur les exemples simples que la modif n'a rien dégradé)

re bonjour,
J'ai effectué cette modification et j'ai rediriger le chip select sur 10 au lieu de 4 comme dans la spec de la carte SD.
Résultat les changements ont pas affecté le Datalogger qui a toujours marché mais ne résout pas le problème du bluetooth qui affiche encore "couldn't factory reset"...