-
Notifications
You must be signed in to change notification settings - Fork 723
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Several contributions #173
base: master
Are you sure you want to change the base?
Conversation
…sp_link_build" in the C code) converted the unconditional downloading of YUI compressor and HTML compressor to be conditional - only if they are not already present moved all Javascript blocks from HTML files into separate JS files - otherwise HTML compressor does not compress the inlined Javascript code changed the place of inclusion of JS files into HTML - it is now at the end of BODY instead of beginning (this speeds up the page loading a little) added a page "Firmware" which allows for OTA upgrades - so the utility "wiflash" is no more needed improved the Makefile to show firmware size as a percentage of the available ROM space improved the Makefile to show the espFS size as a percentage of the raw uncompressed size of web assets combined the 2 invokations of HTML compressor in Makefile (once for main folder and once for WIFI folder) into a single one changed 4-5 CSS rules for better visual readability fixed a bug in "cgiGetFirmwareNext" - it was not sending the No-Cache headers and so the browser shows wrong (older, cached) info added "\n" in several DBG() statements I had to rename "base64_decode" because there is same named function inside "ssl_crypto_misc" from the SSL library
ifeq ("$(FLASH_SIZE)","512KB") | ||
# Winbond 25Q40 512KB flash, typ for esp-01 thru esp-11 | ||
ESP_SPI_SIZE ?= 0 # 0->512KB (256KB+256KB) | ||
ESP_FLASH_MODE ?= 0 # 0->QIO | ||
ESP_FLASH_FREQ_DIV ?= 0 # 0->40Mhz | ||
ESP_FLASH_MAX ?= 241664 # max bin file for 512KB flash: 236KB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Esp-link does not fit into that space. When you use a 512KB flash you loose the over-the-air update capability.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is a makefile (therefore it must account for all possibilities), someone may decide that not all provided features are needed for him - so he can purposedly exclude e.g. MQTT or SYSLOG or whatever. And in such cases the code will be smaller and may fit into smaller space. The logic here is that the size of the flash setting depends on the chip chosen - and this choice is in the hands of the user. Instead of fixing the number, would not it be better to make it dependable of the user choice ? All other flash parameters are already dependable, why not this one ?
Thanks for the PR, but you're making a ton of changes for a multitude of purposes, reorganizing lots of code, pretty much all without explanation or motivation, and without any prior discussion. I'm sure there's nice stuff in there, but this makes it very difficult to review and to see the point of it all. |
If you think that my willing to share something is PR and of no value to others, then I will not bother you any more. |
So it looks like the branch tmcdos's branch works....and it can post to an https server. Which is cool. But there is so much that doesn't render right in the html... @tmcdos it would be quite helpful if you could elaborate on what you did to change the code to allow for https posts. I saw you commented out some stuff in the rest.c file but how did you incorporate the ssl library? |
@ShaneKirkbride Could you be more specific about which part of HTML does not render ? This branch is not my project, it is just the master branch with a suitable part of my changes applied. I am using only the core of ESP-LINK (TCP bridge and HTTP server) - I do not connect AVR or other external microcontrollers. I do not use mDNS, SLIP, Syslog, MQTT, Telnet commands ... |
@tmcdos when I open up the esp-link in the browser the tool bar menu on the side does not render so I cannot look at the debug log ect...Not sure if you intended for this but I really like this functionality. I'll check out your the code. Thanks for the work on getting the https going... |
These are my contributions to the project - you can merge into the master, so that others can benefit from the improvements.