OneWire in Due

I believe the tone functions are still not ported.

alvesjc:

[quote author=Paul Stoffregen link=topic=141030.msg1067752#msg1067752 date=1357937038]
Does Due have a tone() function yet? If so, please output an infinite duration 15 kHz tone on a pin during the test.

I believe the tone functions are still not ported.
[/quote]

I'm not sure what this has to do with onewire thread, but I have a proof-of-concept tone(), see tone1.ino in

I've been working with OneWire today. I included the #defines for Due.

It seems to work on a couple sensors, but most of my 10 test sensors them do not work. They all respond with a presence pulse, but then return 0xFF for every byte including the checksum.

So I started troubleshooting. I believe I've tracked the problem to a possible bug in delayMicroseconds(). I'm using Arduino IDE 1.5.1.

Here is a very simple test program, which does a reset and then sends a single byte (skip is 0xCC).

#include <OneWire.h>

OneWire ds(10); // on pin 10

void setup() {
}

void loop() {
ds.reset();
ds.skip();
delay(10);
}

Here is the actual waveform:

On the top trace you can see the entire sequence. On the bottom is a zoomed in view of the first 4 bits after the reset. The time scale is 30 us/div. OneWire sends LSB first, so this is two 0s followed by two 1s.

The first 0 bit is incorrect. OneWire called delayMicroseconds(65), but as you can see on the trace, the time was only 30 us. The next zero bit is generated by the exact same code, where the delay actually is 65 us. Well, it's actually closer to 67 us, but a 2 us error is ok. But the first pulse being less than 60 us is not ok. The datasheet says the chip will sample the voltage between 15 to 60 us after the falling edge, so a 30 us pulse works with some chips, but not others (most my 10 test samples apparently sample after 30 us).

Here is the same code, with the same sensor and same oscilloscope setup, running on a Teensy 3.0 board.

Both of the zero bits have a 65 us wide low pulse.

I'm getting ready to publish OneWire 2.2. Here's a preview version:

http://www.pjrc.com/teensy/beta/OneWire_preview22_17jan13.zip

If anyone has any feedback regarding how OneWire 2.2 should look, please speak up ASAP!

Unfortunatly, can't test it... argh...

Paul,

I'm having problems reading from multiple DS18B20's with your 2.2 preview library.

Fresh copy of arduino-1.5.1r2-windows, and downloaded just your 2.2 preview library, and I run the DS18x20_Temperature sketch with three of the DS18B20's attached to Due pin 54 (Analog line 0) and I get the following:

No more addresses.

No more addresses.

No more addresses.

If I pull two of the sensors out it starts returning results although sometimes it returns results like the following:

ROM = 28 F6 C3 49 3 0 0 25
Chip = DS18B20
Data = 0 FF FF FF FF FF FF FF FF FF CRC=C9
Temperature = 4095.94 Celsius, 7404.69 Fahrenheit

or

ROM = 28 F6 C3 49 3 0 0 25
Chip = DS18B20
Data = 1 50 5 4B 46 7F FF C 10 1C CRC=1C
Temperature = 85.00 Celsius, 185.00 Fahrenheit

I'm using the ADK2012 device (with the google-provided IDE), which is very similar to an Arduino Due. When I include the pre-release 2.2 version linked above into a project and compile, I get errors like this:

OneWire.cpp: In constructor 'OneWire::OneWire(uint8_t)':
OneWire.cpp:123: error: base operand of '->' has non-pointer type 'const PinDescription'
OneWire.cpp:124: error: base operand of '->' has non-pointer type 'const PinDescription'

Removing the 2 lines it's complaining about allows it to compile, but unsurprisingly, it doesn't actually work.

I'm new enough to all this that I don't have a good handle on how to get started debugging this. Any ideas?

(I asked this on stackoverflow too: http://stackoverflow.com/q/14669607/114917)

PaulMcMillan:
I'm using the ADK2012 device (with the google-provided IDE), which is very similar to an Arduino Due. When I include the pre-release 2.2 version linked above into a project and compile, I get errors like this:

Did you try compiling on Arduino 1.5.1?

Maybe you can copy whatever's ADK2012 is missing from Arduino 1.5.1?

Of course, without fixing delayMicroseconds(), it's unlikely to work reliably.

Is there any way to fix to the delayMicroseconds() issue? or is this something we have to hope the folks at arduino will fix for us? I am using the Ds18b20's for a brewery system and have moved to the due recently and don't want to backtrack to change the sensors

Hi all,

I tried the the OneWire 2.2 with IDE 1.5.1r2. Two of four DS1820 sensors give me no readings ("No more addresses" in the DS18x20 Example sketch), the other two produce no valid temperature readings:

ROM = 10 D1 A2 54 2 8 0 57
  Chip = DS18S20
  Data = 1 FF FF FF FF FF FF FF FF FF  CRC=C9
  Temperature = -0.50 Celsius, 31.10 Fahrenheit

It is probably the delayMicroseconds problem Paul mentioned in his post.

With the new IDE 1.5.2 (Arduino Forum) all four sensors are unable to be read ("No more addresses").
It's kind of weird...

Have someone else tried 1.5.2 with OneWire yet?

Leo

Update: the OneWire Library with changes by alvesjc and mantoui works with both 1.5.1r2 and 1.5.2. I'm able to read all 4 sensors.

Hi Paul,

I just finished diff-and-try session with the library version OneWire_preview22_17jan13.zip and the version from this thread (with changes by alvesjc and mantoui).
The critical point seems to be the write_bit() function and the interrupt handling combined with delayMicroseconds() calls in this function (both have been mentioned in this thread already).
As soon as I excluded delayMicroseconds calls from noInterrupts()/interrupts() sections in the write_bit() function, the library worked.

Here is the changed version of write_bit():

void OneWire::write_bit(uint8_t v)
{
	IO_REG_TYPE mask=bitmask;
	volatile IO_REG_TYPE *reg IO_REG_ASM = baseReg;

	if (v & 1) {
		noInterrupts();
		DIRECT_WRITE_LOW(reg, mask);
		DIRECT_MODE_OUTPUT(reg, mask);	// drive output low
		interrupts();
		delayMicroseconds(10);
		noInterrupts();
		DIRECT_WRITE_HIGH(reg, mask);	// drive output high
		interrupts();
		delayMicroseconds(55);
	} else {
		noInterrupts();
		DIRECT_WRITE_LOW(reg, mask);
		DIRECT_MODE_OUTPUT(reg, mask);	// drive output low
		interrupts();
		delayMicroseconds(65);
		noInterrupts();
		DIRECT_WRITE_HIGH(reg, mask);	// drive output high
		interrupts();
		delayMicroseconds(5);
	}
}

It's the only change I made on the library.

I'm running a test with all the sensors installed in my house heating control, I have 9 DS1820 for temperature sensing and some DS2408 and DS2413 for relay switching.
All of them are working (so far) as they usually do with my old Arduino Mega. I'll post test results tomorrow.

Leo

Interrupts are disabled for a very good reason. There's absolutely no way OneWire will return to the buggy pre-2.0 days where interrupts could lengthen the timing and cause random communication errors.

Ok, I understand that (I do know what are interrupts for and why they are disabled in time critical sections). I do not understand why delayMicroseconds acts differently depending on interrupts being disabled or enabled. Declaration of delayMicrosections for SAM is quite simple (from wiring.c):

void delayMicroseconds( uint32_t us )
{
    uint32_t start = micros();
    while ((micros() - start) < us)
        ;
}

It did not change since 1.5.1r2.

Do you have an idea, what the solution could be?

Leo

PS if I can contribute in any way, let me know.

leonid_leonid:

[quote author=Paul Stoffregen link=topic=141030.msg1115802#msg1115802 date=1360682994]
Interrupts are disabled for a very good reason. There's absolutely no way OneWire will return to the buggy pre-2.0 days where interrupts could lengthen the timing and cause random communication errors.

Ok, I understand that (I do know what are interrupts for and why they are disabled in time critical sections). I do not understand why delayMicroseconds acts differently depending on interrupts being disabled or enabled. Declaration of delayMicrosections for SAM is quite simple (from wiring.c):

void delayMicroseconds( uint32_t us )
{
    uint32_t start = micros();
    while ((micros() - start) < us)
        ;
}

It did not change since 1.5.1r2.

Do you have an idea, what the solution could be?

Leo

PS if I can contribute in any way, let me know.
[/quote]

So the problem must be somewhere behind the micros the function delayMicroseconds is realy open so the problem musst be somewhere there

 uint32_t micros( void )
{
uint32_t ticks ;
uint32_t count ;

SysTick->CTRL;
do {
  ticks = SysTick->VAL;
  count = GetTickCount();
} while (SysTick->CTRL & SysTick_CTRL_COUNTFLAG_Msk);

return count * 1000 + (SysTick->LOAD + 1 - ticks) / (SystemCoreClock/1000000) ;
}

its in the wiring.c

Markus_L811:
So the problem must be somewhere behind the micros the function delayMicroseconds is realy open so the problem musst be somewhere there

Right, micros() must have a problem with noInterrupts().

I tried to change delayMicroseconds() to make it independent from micros(). Here is the code:

#define CYCLES_PER_USEC 84 // Arduino Due has 84 MHz clock
#define CYCLES_PER_LOOP 6  // one iteration of the loop takes 6 cycles
#define OVERHEAD_CONST 18  // could someone with an osci please verify this constant?
void delayMicroseconds( uint32_t us )
{
  if(us==1) return;
  int j;
  //one iteration of this loop takes 6 cycles on Arduino Due compiled with IDE 1.5.2
  for(j=0;j<us*(CYCLES_PER_USEC/CYCLES_PER_LOOP)-OVERHEAD_CONST;j++)
  {
    asm volatile("mov r0, r0"); // just NOP 
    asm volatile("mov r0, r0");  
  }
}

This change worked with the original version of OneWire (OneWire_preview22_17jan13.zip)

This patch is not pretty but it proves that the problem is in the micros().

Tomorrow I'll try to understand, why micros() has a problem with noIterrupts().

Thank you all, guys, for debugging this one.

I've pushed a patch that makes delayMicrosecond() independent from micros().

Paul, I've borrowed the implementation from the Teensy core, if you don't mind!
I've only slightly changed it:

  • the "bne" instruction to "bge" to allow delays of 0uS
  • changed the calculation of "n" (multiply seems to use 1 cycle as the shift and
    makes the formula generic)

@leonid_leonid
sorry, I didn't looked at the forum thread with your implementation!

Hi all.

I'm back in Due.

I've compiled IDE from the latest info in Git, so I'll give a try on the latest lib from Paul later today.

Hello World!

Sometime today, I'll be receiving my Arduino Due, and one of my active Arduino projects is using OneWire. After reading through all of the posts, I'm confused on what to do with my current OneWire library. Should I patch it, replace it, or make a new OneWire library parallel to the current one I'm using?

My Project: Arduino Mega 2560: Digital Temperature using DS18B20 and 7-Segments LEDs

I've removed the serial debugging code and simplified my sketch that works on my Arduino Mega 2560 clone.

From this Forum, I've downloaded OneWire.zip and OneWire_preview22_17jan13.zip.

Your best chance is OneWire 2.2 with the latest nightly build of Arduino.

Yes that works just changing a few files and the new OneWire lib from Paul and the Due is working correctly.