Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: [1] 2  Send TopicPrint
Hot Topic (More than 8 Replies) Arduino 101 & Genuino 101 (Invalid DFU suffix signature) (Read 13531 times)
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Jan 17th, 2016 at 2:37pm
Print Post  
Debug is not workin with Arduino 101

dfu-util 0.8
Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2014 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to dfu-util@lists.gnumonks.org
Opening DFU capable USB device...
ID 8087:0aba
Run-time device DFU version 0011
Claiming USB DFU Interface...
Setting Alternate Setting #7 ...
Invalid DFU suffix signature
A valid DFU suffix will be required in a future dfu-util release!!!
Done uploading
Determining device status: Sketch will execute in about 5 seconds.
error get_status
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #1 - Jan 17th, 2016 at 3:11pm
Print Post  
Hi,

Thanks for the post.

Is that the Intel 101?
  
Back to top
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #2 - Jan 17th, 2016 at 3:46pm
Print Post  
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #3 - Jan 17th, 2016 at 3:51pm
Print Post  
Does it have serial?
  
Back to top
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #4 - Jan 17th, 2016 at 4:19pm
Print Post  
Yes, arduino 101 have two serial port:

USBSerial: for serial communication and sketch upload.

Serial1: 0 (RX) and 1 (TX). Used to receive (RX) and transmit (TX) TTL serial data. These pins are connected to the Serial1 class.

https://www.arduino.cc/en/uploads/Main/Arduino101Schematic.pdf
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #5 - Jan 17th, 2016 at 4:24pm
Print Post  
If you make a small "Hello world" sketch with Serial. Then open the serial monitor. Then click compile upload.

Does the Serial Monitor show upload status correctly. Does the port reopen correctly after upload and does "Hello world" appear in the monitor?
  
Back to top
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #6 - Jan 17th, 2016 at 4:41pm
Print Post  
Yes, no probleme it work great

Code (C++)
Select All
void setup() {
	// start serial port at 9600 bps and wait for port to open:
	Serial.begin(9600);
	while (!Serial) {
		; // wait for serial port to connect. Needed for native USB port only
	}

}

void loop()
{
	Serial.println("Hello world");   // send an initial string
	delay(300);
} 


« Last Edit: Feb 7th, 2016 at 1:13am by Tim@Visual Micro »  
Back to top
 
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #7 - Jan 17th, 2016 at 5:07pm
Print Post  
To be more clear, I try to debug in Microsoft visual studio 2015.
I have installed Arduino IDE 1.6.7
board is: Arduino 101

I test with a simple blink led project:

Code (C++)
Select All
void setup()
{

	// initialize digital pin 13 as an output.
	pinMode(13, OUTPUT);

}

void loop()
{

	digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
	delay(100);              // wait for a second
	digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
	delay(100);              // wait for a second

} 



Automatic debugging is uncheck.

In project properties:
(Micro Debug) = Full
Local Port = COM4 (my usb-serial port to Arduino 101 board)
Local Speed = 9600
Remote Port = Serial1 ( The SerialUSB give me an error: 'SerialUSB' was not declared in this scope)
Remote speed = 9600

The project upload in the arduino, seem to stop at Breakpoint, but there is nothing in the (Micro debug trace or 
Breakpoint data...
« Last Edit: Feb 7th, 2016 at 1:13am by Tim@Visual Micro »  
Back to top
 
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #8 - Jan 17th, 2016 at 5:36pm
Print Post  
There was a probleme too with the "isascii" in VM_DBG.cpp

VM_DBG.cpp:In function 'long unsigned int strtoul(const char*, char**, int)
VM_DBG.cpp:1214:17: error: 'isascii' was not declared in this scope
:if (!isascii(c))
  
Back to top
 
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #9 - Jan 17th, 2016 at 5:41pm
Print Post  
I've got a Leonardo board and the same project work fine with the debug.

I don't need to config this:
Local Port = COM4 (my usb-serial port to Arduino 101 board)
Local Speed = 9600
Remote Port = Serial1 ( The SerialUSB give me an error: 'SerialUSB' was not declared in this scope)
Remote speed = 9600

It find everything:

Code (C++)
Select All
Uploading to I/O board using 'COM6'
Uploader started for board Arduino Leonardo
Upload method will be: bootloader
Uploading via Bootloader
PORTS {COM1,COM4,COM6} / {COM1,COM4,COM6} => {}
PORTS {COM1,COM4,COM6} / {COM1,COM4,COM6} => {}
PORTS {COM1,COM4,COM6} / {COM1,COM4} => {}
PORTS {COM1,COM4} / {COM1,COM4,COM5} => {COM5}
D:\Arduino\hardware\tools\avr\bin\avrdude "-CD:\Arduino\hardware\tools\avr/etc/avrdude.conf" -v -patmega32u4 -cavr109 -PCOM5 -b57600 -D o/Blink.hex:i"
avrdude: Version 6.0.1, compiled on Apr 15 2015 at 19:59:58
         Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
         Copyright (c) 2007-2009 Joerg Wunsch
         System wide configuration file is "D:\Arduino\hardware\tools\avr/etc/avrdude.conf"
         Using Port                    : COM5
         Using Programmer              : avr109
         Overriding Baud Rate          : 57600
         AVR Part                      : ATmega32U4
         Chip Erase delay              : 9000 us
         PAGEL                         : PD7
         BS2                           : PA0
         RESET disposition             : dedicated
         RETRY pulse                   : SCK
         serial program mode           : yes
         parallel program mode         : yes
         Timeout                       : 200
         StabDelay                     : 100
         CmdexeDelay                   : 25
         SyncLoops                     : 32
         ByteDelay                     : 0
         PollIndex                     : 3
         PollValue                     : 0x53
         Memory Detail                 :
                                  Block Poll               Page                       Polled
           Memory Type Mode Delay Size  Indx Paged  Size   Size #Pages MinW  MaxW   ReadBack
           ----------- ---- ----- ----- ---- ------ ------ ---- ------ ----- ----- ---------
           eeprom        65    20     4    0 no       1024    4      0  9000  9000 0x00 0x00
           flash         65     6   128    0 yes     32768  128    256  4500  4500 0x00 0x00
           lfuse          0     0     0    0 no          1    0      0  9000  9000 0x00 0x00
           hfuse          0     0     0    0 no          1    0      0  9000  9000 0x00 0x00
           efuse          0     0     0    0 no          1    0      0  9000  9000 0x00 0x00
           lock           0     0     0    0 no          1    0      0  9000  9000 0x00 0x00
           calibration    0     0     0    0 no          1    0      0     0     0 0x00 0x00
           signature      0     0     0    0 no          3    0      0     0     0 0x00 0x00
         Programmer Type : butterfly
         Description     : Atmel AppNote AVR109 Boot Loader
Connecting to programmer: .
Found programmer: Id = "CATERIN"; type = S
    Software Version = 1.0; No Hardware Version given.
Programmer supports auto addr increment.
Programmer supports buffered memory access with buffersize=128 bytes.
Programmer supports the following devices:
    Device code: 0x44
avrdude: devcode selected: 0x44
avrdude: AVR device initialized and ready to accept instructions
Reading | ################################################## | 100% -0.00s
avrdude: Device signature = 0x1e9587
avrdude: safemode: lfuse reads as FF
avrdude: safemode: hfuse reads as D8
avrdude: safemode: efuse reads as CB
avrdude: reading input file x"
avrdude: writing flash (5772 bytes):
Writing | ################################################## | 100% 0.51s
avrdude: 5772 bytes of flash written
avrdude: verifying flash memory against :
avrdude: load data flash data from input file :
avrdude: input file  contains 5772 bytes
avrdude: reading on-chip flash data:
Reading | ################################################## | 100% 0.10s
avrdude: verifying ...
avrdude: 5772 bytes of flash verified
avrdude: safemode: lfuse reads as FF
Done uploading via 'COM5'
avrdude: safemode: hfuse reads as D8
avrdude: safemode: efuse reads as CB
avrdude: safemode: Fuses OK (H:CB, E:D8, L:FF)
avrdude done.  Thank you. 






The same project with the Arduino 101 ....:
Code (C++)
Select All
VM_DBG.cpp:In file included from
VM_DBG.h:157:2: error: 'Serial_' does not name a type
:Serial_ *transport
VM_DBG.h:158:13: error: 'Serial_' has not been declared
:void begin(Serial_ *theSerial)
VM_DBG.h:159:13: error: 'Serial_' has not been declared
:void begin(Serial_ *theSerial, unsigned long baud)
VM_DBG.h:In member function 'void VisualMicroDebug::setVariable(T&, int, int)
VM_DBG.h:355:2: error: 'transport' was not declared in this scope
:transport->print("value=")
VM_DBG.cpp:At global scope
VM_DBG.cpp:278:31: error: variable or field 'begin' declared void
  void VisualMicroDebug*:begin(Serial_ *theSerial)
VM_DBG.cpp:278:31: error: 'Serial_' was not declared in this scope
VM_DBG.cpp:278:40: error: 'theSerial' was not declared in this scope
  void VisualMicroDebug*:begin(Serial_ *theSerial)
VM_DBG.cpp:1333:27: error: expected declaration before end of line
:#pragma GCC diagnostic pop
Error compiling libraries 







« Last Edit: Feb 7th, 2016 at 1:13am by Tim@Visual Micro »  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #10 - Jan 17th, 2016 at 6:09pm
Print Post  
Thanks, that makes sense.

The 101 uses a different class name for Serial1 and needs to be added to an internal list.

I will take a look it should be easy to add to the list
  
Back to top
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #11 - Jan 17th, 2016 at 6:41pm
Print Post  
Thx you,

Visualmicro seem a good debug tool, work fine with older arduino.
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #12 - Jan 18th, 2016 at 12:25am
Print Post  
Arduino 101 debug is supported in 1601.11 sp4

Serial and Serial1 should work correctly
« Last Edit: Jan 18th, 2016 at 12:26am by Tim@Visual Micro »  
Back to top
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #13 - Jan 23rd, 2016 at 1:44pm
Print Post  
Hi,

Did you get a chance to try the update?

Thanks
  
Back to top
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #14 - Feb 6th, 2016 at 4:49pm
Print Post  
I've try the debugger.... compilation and upload work but sketch won't start.

With Arduino IDE, the simple blink sketch is working

Code (C++)
Select All
Claiming USB DFU Interface...
Setting Alternate Setting #7 ...
Determining device status: state = dfuIDLE, status = 0
dfuIDLE, continuing
DFU mode device DFU version 0011
Device returned transfer size 2048
Copying data from PC to DFU device
Download	[                         ]   0%            0 bytes
Download	[==                       ]   8%         2048 bytes
Download	[====                     ]  17%         4096 bytes
Download	[======                   ]  26%         6144 bytes
Download	[========                 ]  35%         8192 bytes
Download	[==========               ]  43%        10240 bytes
Download	[=============            ]  52%        12288 bytes
Download	[===============          ]  61%        14336 bytes
Download	[=================        ]  70%        16384 bytes
Download	[===================      ]  78%        18432 bytes
Download	[=====================    ]  87%        20480 bytes
Download	[======================== ]  96%        21296 bytes
Download	[=========================] 100%        21296 bytes
Download done.
Sent a total of 21296 bytes
Invalid DFU suffix signature
Done uploading
state(2) = dfuIDLE, status(0) = No error condition is present
A valid DFU suffix will be required in a future dfu-util release!!!
Done!
can't detach
Resetting USB to switch back to runtime mode
Sketch will execute in about 5 seconds. 


« Last Edit: Feb 7th, 2016 at 1:12am by Tim@Visual Micro »  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #15 - Feb 6th, 2016 at 10:12pm
Print Post  
1602.6 sp2 will help, it has some changes that will affect the 101

The 101 has files name in the upload statement that are not surrounded by double quotes. This causes problems for some toolchains so visual micro converts the file names to 8.3. However, I've switched that off for the 101 system to see if it will help. (It doesn't complain in my test)

Another change is that the ".bin" output file is now built before the ".epp" instead of after. It seems the 101 uses the epp command to run a shrink on the output. It's not obvious is the shrink uses the .bin, I don't think it does, but it's important to do things in the same order as the Arduino Ide hence the change.

It would be useful to see another output log with the latest release thanks

Please try without debug. It that works and you try debug please make sure you clear all settings in "Remote" and "Local" debugger project properties such as RemotePort and LocalPort

Thanks
« Last Edit: Feb 7th, 2016 at 2:22pm by Tim@Visual Micro »  
Back to top
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #16 - Feb 7th, 2016 at 1:08am
Print Post  
With the 1602.6 sp2, the debug work.

Code (C++)
Select All
Compiling debug version of 'Blink' for 'Arduino 101'
Build folder: l_arc32_arduino_101
Additional Defines: VM_DEBUG;VM_DEBUG_ENABLE 1;VM_DEBUG_BANDWIDTH_THROTTLE_MS 33;VM_DEBUGGER_TYPE_HARDWARESERIAL 0;VM_DEBUGGER_TYPE_SOFTWARESERIAL 1;VM_DEBUGGER_TYPE_FASTSERIAL 2;VM_DEBUGGER_TYPE_USB 3;VM_DEBUGGER_TYPE_TEENSY 4;VM_DEBUGGER_TYPE_UART 5;VM_DEBUGGER_TYPE_USART 6;VM_DEBUGGER_TYPE_USBSERIAL 7;VM_DEBUGGER_TYPE_TTYUART 8;VM_DEBUGGER_TYPE_NET_CONSOLE 9;VM_DEBUGGER_TYPE_Uart 10;VM_DEBUGGER_TYPE_COSA 11;VM_DEBUGGER_TYPE_CDCSerialClass 12;VM_DEBUGGER_TYPE EBUG_READ_DIGITAL_PORTS 1;VM_DEBUG_READ_ANALOG_PINS 1;
Architecture Tools: 1.0/bin/
GCC: 4.8.3
Sketchbook: file:\\\D:\Arduino\sketch
Sketch Include Paths
Include Path 'D:\Arduino\sketch\Blink'
Core Include Paths
Include Path cores\arduino'
Include Path variants\arduino_101'
Library Include Paths (1)
+1.0\bin\arc-elf32-g++"  -c -mARCv2EM -mav2em -mlittle-endian -g -Os -Wall -fno-reorder-functions -fno-asynchronous-unwind-tables -fno-omit-frame-pointer -fno-defer-pop -Wno-unused-but-set-variable -Wno-main -ffreestanding -fno-stack-protector -mno-sdata -ffunction-sections -fdata-sections -fsigned-char -fno-rtti -fno-exceptions -D__ARDUINO_ARC__ -std=c++11 -w -x c++ -E -CC -DF_CPU=32000000L -DARDUINO=10607 -DARDUINO_ARC32_TOOLS -DARDUINO_ARCH_ARC32 -D__CPU_ARC__ -DCLOCK_SPEED=32 -DCONFIG_SOC_GPIO_32 -DCONFIG_SOC_GPIO_AON -DINFRA_MULTI_CPU_SUPPORT -DCFW_MULTI_CPU_SUPPORT -DHAS_SHARED_MEM 4\system/libarc32_arduino101/common" 4\system/libarc32_arduino101/drivers" 4\system/libarc32_arduino101/bootcode" 4\system/libarc32_arduino101/framework/include"       4\cores\arduino" 4\variants\arduino_101" -I"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\nkfh52pq.nuf\Micro Platforms\default\debuggers\VM_DBG" -I"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\nkfh52pq.nuf\Micro Platforms\default\debuggers" _arduino_101\Blink.cpp" -o "nul"
Build Core Paths: ores\arduino
Using library VM_DBG version 0.0.0 in folder C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\nkfh52pq.nuf\Micro Platforms\default\debuggers\VM_DBG
+1.0/bin/arc-elf32-g++" -c -mARCv2EM -mav2em -mlittle-endian -g -Os -Wall -fno-reorder-functions -fno-asynchronous-unwind-tables -fno-omit-frame-pointer -fno-defer-pop -Wno-unused-but-set-variable -Wno-main -ffreestanding -fno-stack-protector -mno-sdata -ffunction-sections -fdata-sections -fsigned-char -MMD -fno-rtti -fno-exceptions -D__ARDUINO_ARC__ -std=c++11 -DF_CPU=32000000L -DARDUINO=10607 -DARDUINO_ARC32_TOOLS -DARDUINO_ARCH_ARC32 -D__CPU_ARC__ -DCLOCK_SPEED=32 -DCONFIG_SOC_GPIO_32 -DCONFIG_SOC_GPIO_AON -DINFRA_MULTI_CPU_SUPPORT -DCFW_MULTI_CPU_SUPPORT -DHAS_SHARED_MEM 4\system/libarc32_arduino101/common" 4\system/libarc32_arduino101/drivers" 4\system/libarc32_arduino101/bootcode" 4\system/libarc32_arduino101/framework/include" 4\cores\arduino" 4\variants\arduino_101" -I"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\nkfh52pq.nuf\Micro Platforms\default\debuggers\VM_DBG" -I"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\nkfh52pq.nuf\Micro Platforms\default\debuggers" -I"D:\Arduino\libraries" 4\libraries" -I"D:\Arduino\sketch\libraries" "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\nkfh52pq.nuf\Micro Platforms\default\debuggers\VM_DBG\VM_DBG.cpp" -o _arduino_101\VM_DBG\VM_DBG.cpp.o" -DVM_DEBUG -DVM_DEBUG_ENABLE=1 -DVM_DEBUG_BANDWIDTH_THROTTLE_MS=33 -DVM_DEBUGGER_TYPE_HARDWARESERIAL=0 -DVM_DEBUGGER_TYPE_SOFTWARESERIAL=1 -DVM_DEBUGGER_TYPE_FASTSERIAL=2 -DVM_DEBUGGER_TYPE_USB=3 -DVM_DEBUGGER_TYPE_TEENSY=4 -DVM_DEBUGGER_TYPE_UART=5 -DVM_DEBUGGER_TYPE_USART=6 -DVM_DEBUGGER_TYPE_USBSERIAL=7 -DVM_DEBUGGER_TYPE_TTYUART=8 -DVM_DEBUGGER_TYPE_NET_CONSOLE=9 -DVM_DEBUGGER_TYPE_Uart=10 -DVM_DEBUGGER_TYPE_COSA=11 -DVM_DEBUGGER_TYPE_CDCSerialClass=12 -DVM_DEBUGGER_TYPE=VM_DEBUGGER_TYPE_CDCSerialClass -DVM_DEBUG_BREAKPAUSE -DVM_DEBUG_AUTO_REPORTING -DVM_DEBUG_READ_DIGITAL_PORTS=1 -DVM_DEBUG_READ_ANALOG_PINS=1
Using previously compiled file: arduino_101\Blink.cpp.o
+1.0/bin/arc-elf32-gcc" -nostartfiles -nodefaultlibs -nostdlib -static -Wl,-X -Wl,-N -Wl,-mARCv2EM -Wl,-marcelf -Wl,--gc-sections 4\variants\arduino_101/linker_scripts/flash.ld" tel_arc32_arduino_101/Blink.ino.map" -o _arduino_101/Blink.ino.elf" 32_arduino_101" 4\variants\arduino_101" -Wl,--whole-archive "-larc32drv_arduino101" -Wl,--no-whole-archive -Wl,--start-group "-larc32drv_arduino101" -lc -lm -lgcc _arduino_101\Blink.cpp.o" _arduino_101\VM_DBG\VM_DBG.cpp.o" _arduino_101/core.a"
+1.0/bin/arc-elf32-objcopy" -S -O binary -R .note -R .comment -R COMMON -R .eh_frame _arduino_101/Blink.ino.elf" _arduino_101/Blink.ino.bin"
+1.0/bin/arc-elf32-strip" _arduino_101/Blink.ino.elf"
+1.0/bin/arc 

« Last Edit: Feb 7th, 2016 at 1:11am by Tim@Visual Micro »  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #17 - Feb 7th, 2016 at 1:11am
Print Post  
Oh great. So everything is okay for you now?
  
Back to top
IP Logged
 
sebastien
Junior Member
**
Offline


Posts: 14
Joined: Jan 17th, 2016
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #18 - Feb 7th, 2016 at 1:13am
Print Post  
The debug work fine... thx

But with the release option the Sketch dont start.
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12188
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Arduino 101 & Genuino 101 (Invalid DFU suffix signature)
Reply #19 - Feb 7th, 2016 at 1:15am
Print Post  
What do you mean sketch doesn't start? 

Do you mean the Serial window does not open?
  
Back to top
IP Logged
 
Page Index Toggle Pages: [1] 2 
Send TopicPrint