ESP8266 Developer Zone The Official ESP8266 Forum 2017-03-31T21:11:38+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=1867 2016-10-02T12:31:25+08:00 2016-10-02T12:31:25+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=10033#p10033 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]> We can only help when you manually configure your toolchain or have issues with our hardware.

Statistics: Posted by Guest — Sun Oct 02, 2016 12:31 pm


]]>
2016-09-30T05:02:56+08:00 2016-09-30T05:02:56+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=9995#p9995 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]>
ESP8266 wizard is OK with visual studio community but only 30 days without licence.

Why ESP8266 wizard is not OK with visual studio express whereas atmel studio is ok.

It is a problem of installation or a problem of feature.


log:
30/09/2016 10:25:27 - Found installed product - Microsoft Visual Studio Express 2013 for Windows
30/09/2016 10:25:27 - Found installed product - Microsoft Visual Studio Express 2013 for Windows Desktop
30/09/2016 10:25:27 - Found installed product - Microsoft Visual Studio Express 2015 for Windows Desktop
30/09/2016 10:25:27 - Found installed product - Global Location
30/09/2016 10:25:27 - Found installed product - AtmelStudio
30/09/2016 10:25:28 - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products.

in fact the licence for visual studio community is renewable after 3 months.

thank you

Marco

Statistics: Posted by Musher40 — Fri Sep 30, 2016 5:02 am


]]>
2016-09-12T18:55:56+08:00 2016-09-12T18:55:56+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=9787#p9787 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]>
tirpitz wrote:
compile OK
Linking FAIL

section `.irom0.text' will not fit in region `irom0_0_seg'
1> collect2.exe: error: ld returned 1 exit status


You could try to mark your functions as iCache functions instead of iRAM (default). In case of VS, if the standard Espressif SDK ICACHE_FLASH_ATTR does not work, you may try modifying the .ld files according to your requirement.

Statistics: Posted by Guest — Mon Sep 12, 2016 6:55 pm


]]>
2016-09-15T15:06:58+08:00 2016-09-12T17:04:34+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=9785#p9785 <![CDATA[Problem for flashing with espTool]]>
I was a problem for flashing esp8266 with NodeMcu 0.9 so i modified esptool see

https://github.com/DonKinzer/esp_tool/issues/1 and

https://github.com/DonKinzer/esp_tool/issues/2.

Marco

Statistics: Posted by Musher40 — Mon Sep 12, 2016 5:04 pm


]]>
2016-07-29T18:41:26+08:00 2016-07-29T18:41:26+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=8202#p8202 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]> sorry, we never give the comile solution based on VS

Statistics: Posted by ESP_Rubin — Fri Jul 29, 2016 6:41 pm


]]>
2016-07-29T04:57:51+08:00 2016-07-29T04:57:51+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=8179#p8179 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]> Linking FAIL

section `.irom0.text' will not fit in region `irom0_0_seg'
1> collect2.exe: error: ld returned 1 exit status

Statistics: Posted by tirpitz — Fri Jul 29, 2016 4:57 am


]]>
2016-06-06T23:54:07+08:00 2016-06-06T23:54:07+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=7232#p7232 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]>
thomas55 wrote:
... and had to extend the path to 'ExtensaTools'.


What do you mean by extend path?

For the moment, any configuration can't support a Base Folder renaming, because it's hard coded inside the dll. That's mean XtensaTools including is sub-folder can't be rename. Ok, you can add new release or version inside ESPressif. but XtensaTools\ESPressif folder can't be change.

Code:

void virtual RunStarted(Object^ automationObject, Dictionary<String^, String^>^ replacementsDictionary, WizardRunKind runKind,
                                      array<System::Object ^, 1>^ customParams)
{
   m_dte = (DTE^)automationObject;

   Destination = replacementsDictionary["$destinationdirectory$"];
   ProjectName = replacementsDictionary["$projectname$"];

   MainDlg.BaseFolder = (String^)Registry::GetValue("HKEY_CURRENT_USER\\" + m_dte->RegistryRoot, "VisualStudioLocation", "") +
                                      "\\XtensaTools\\ESPressif\\";
   if (!IO::Directory::Exists(MainDlg.BaseFolder))
   {
      MessageBox::Show("Some folder seem missing, please repair or reinstall");
      throw gcnew WizardBackoutException("");
   }
   


Your stuff must be inside (all pointing to same)
[*]$(VisualStudioDir)\XtensaTools
[*]"HKEY_CURRENT_USER\Software\Microsoft\Visual Studio\<version>\" -> VisualStudioLocation\XtensaTools

check
[*]Your windows registry key
[*]Your Visual Studio $(VisualStudioDir) macro

Statistics: Posted by Fleuve — Mon Jun 06, 2016 11:54 pm


]]>
2016-06-06T17:52:42+08:00 2016-06-06T17:52:42+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=7222#p7222 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]> Statistics: Posted by thomas55 — Mon Jun 06, 2016 5:52 pm


]]>
2016-05-31T17:53:38+08:00 2016-05-31T17:53:38+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=7152#p7152 <![CDATA[Re: ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]> I installed the software (win7, VirtualBox win8.1, VirtualBox win10) and had to extend the path to 'ExtensaTools'.
Then, to create a project in the attempt came the 'ESP Wizard'... but with no contents in the fields. Nothing goes.
No SDK release.
No SDK Version.
No Empty Project.

What did I do wrong???
Ask for help.
Greetings from Berlin, Thomas

Statistics: Posted by thomas55 — Tue May 31, 2016 5:53 pm


]]>
2016-05-28T00:12:08+08:00 2016-05-28T00:12:08+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=7113#p7113 <![CDATA[Re: ESP8266 Wizard 1.2.4 for Visual Studio 2015 with FlashTool and Intellisense]]>
Reallife wrote:
Try your Installer in a Clean VMWare Image.


Thanks for your support!

For the moment I've fix some bug inside 1.2.5.

I'm gonna take some time to grab stuff to test on VM VirtualBox to fix install bug. For the moment after your bug list, i considerate stable enough, if only you pass setup :D

Statistics: Posted by Fleuve — Sat May 28, 2016 12:12 am


]]>
2016-05-11T21:55:52+08:00 2016-05-11T21:55:52+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=6832#p6832 <![CDATA[Re: ESP8266 Wizard 1.2.4 for Visual Studio 2015 with FlashTool and Intellisense]]>
i found some Problems.

The File extracts in "C:\Users\...\Downloads\%USERPROFILE%\Documents\Visual Studio 2015", not in the Visual Studio 2015 directory.

In XtensaGcc and XtensaLD you use E:\Home\Visual Studio 2015\ instead of $(VisualStudioDir).

Try your Installer in a Clean VMWare Image.

Statistics: Posted by Reallife — Wed May 11, 2016 9:55 pm


]]>
2016-05-04T11:25:16+08:00 2016-05-04T11:25:16+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=6701#p6701 <![CDATA[Re: ESP8266 Wizard 1.2.4 for Visual Studio 2015 with FlashTool and Intellisense]]>
Dooglas wrote:

Code:

*** Folder CHECK ******************************************************************************
Checking for Folder [D:\visual studio 2015\XtensaTools] : FOUND
Checking for Folder [D:\visual studio 2015\XtensaTools\ESPressif] : FOUND




Like I can see, You already have a version installed inside D:\Visual Studio 2015.... I know some user get trouble about installation, but If you have some time I will check with you for the issue.

1. Which version was already install on your computer?
2. Which version you will install?... I'm suppose 1.2.4
3. Which version of windows you have?... I'm suppose Windows 10 64bits
4. Does D:\visual studio 2015\XtensaTools was empty or contain near 400 meg?
5. After uninstall inside uninstall config panel... Does D:\visual studio 2015\XtensaTools still exist
6. I've you try to reinstall... Does Reinstall message pop-up appears.
7. Check Inside visual studio 2015 extension manager to uninstall both plugins (diag and wizard)
8. Have you try to force to execute setup with administrator ?
9. Have you already find the issue?

For my part the setup work well on my 3 computer. I'm amazed about the error... Specially if a previous version was found.

Waiting your respond.

Statistics: Posted by Fleuve — Wed May 04, 2016 11:25 am


]]>
2016-04-21T14:38:46+08:00 2016-04-21T14:38:46+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=6555#p6555 <![CDATA[Re: ESP8266 Wizard 1.2.4 for Visual Studio 2015 with FlashTool and Intellisense]]> ESP8266Diag:

Code:

*** DTE CHECK ******************************************************************************
Checking for HKEY_CLASSES_ROOT\VisualStudio.DTE.10.0 : NOT FOUND
Checking for HKEY_CLASSES_ROOT\VisualStudio.DTE.11.0 : NOT FOUND
Checking for HKEY_CLASSES_ROOT\VisualStudio.DTE.12.0 : NOT FOUND
Checking for HKEY_CLASSES_ROOT\VisualStudio.DTE.14.0 : FOUND
   Checking for VisualStudioLocation inside HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0 : FOUND
      VisualStudioLocation=D:\visual studio 2015

*** VSIX CHECK ******************************************************************************
Current DTE regkey at : HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0 : FOUND
   Checking for current VisualStudioLocation inside HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0 : FOUND
      Current VisualStudioLocation=D:\visual studio 2015

*** Folder CHECK ******************************************************************************
Checking for Folder [D:\visual studio 2015\XtensaTools] : FOUND
Checking for Folder [D:\visual studio 2015\XtensaTools\ESPressif] : FOUND

Statistics: Posted by Dooglas — Thu Apr 21, 2016 2:38 pm


]]>
2016-03-11T01:57:34+08:00 2016-03-11T01:57:34+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=6058#p6058 <![CDATA[Re: ESP8266 Wizard for Visual Studio 2015]]>
tilz0R wrote:
After installation I got error that some files or folders are missing.


Read Installation troubleshooting inside New post, it's gonna resume the suspected cause of crash. If problem persist send me the content of your ESP8266Diag.txt.

Statistics: Posted by Fleuve — Fri Mar 11, 2016 1:57 am


]]>
2016-03-08T17:00:39+08:00 2016-03-08T17:00:39+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=6034#p6034 <![CDATA[Re: ESP8266 Wizard for Visual Studio 2015]]>
Error comes when I click on New Project in VS and select ESP8266.

Win10 x64

Statistics: Posted by tilz0R — Tue Mar 08, 2016 5:00 pm


]]>
2017-03-31T21:11:38+08:00 2016-03-07T02:55:51+08:00 https://bbs.espressif.com:443/viewtopic.php?t=1867&p=5989#p5989 <![CDATA[ESP8266 Wizard 1.2.5 for Visual Studio 2015 with FlashTool and Intellisense]]> **********************************************
OBSOLETE: Use ESP8266 Wizard 1.2.6 for Visual Studio
**********************************************

Statistics: Posted by Fleuve — Mon Mar 07, 2016 2:55 am


]]>