Robert Jędrzejczyk

Results 9 comments of Robert Jędrzejczyk

Please look into Arduino.cmake, functions: setup_arduino_bootloader_args setup_arduino_programmer_args setup_arduino_bootloader_upload setup_arduino_upload PROJECT_NAME-burn - program using specific hw programmer, this INCLUDE FLASH ERASE in CMakeLists.txt you must specify: set(${PROJECT_NAME}_PROGRAMMER usbtinyisp) set(${PROJECT_NAME}_PORT COM1) PROJECT_NAME-upload...

fix for get ARDUINO_SDK_PATH from ENV on Windows: ArduinoToolchainFiles.java, after line 52 insert code: if (System.getProperty("os.name").toLowerCase().contains("nux")) { String arduinoSdkPathEnv = System.getenv("ARDUINO_SDK_PATH"); String unixPathsString = "set(ARDUINO_SDK_PATH \"" + arduinoSdkPathEnv + "\")"...

Did you select cpu when create project? In CMakeLists.txt file you must have for example: set(${PROJECT_NAME}_BOARD nano) set(ARDUINO_CPU atmega328) and all working OK. Most of adrunio boards can use more...

I have such errors only if I don't choose CPU. Please check your CMakeLists.txt for: set(${PROJECT_NAME}_BOARD nano) set(ARDUINO_CPU atmega328old) project(${PROJECT_NAME}) I use Win 10 + Arduino 1.8.10 + Clion 2019.3...

Modified source for OpenSSL 1.1.1 [OpenSSL.zip](https://github.com/IndySockets/Indy/files/5029069/OpenSSL.zip) Compile and tested with: Delphi 7 + Win XP sp2 Delphi 2007 + Win XP sp3 Delphi XE 7 + Win 7 Delphi XE...

@mezen now when compile using D2007 I have: [DCC Error] IdOpenSSLHeaders_ec.pas(290): E2003 Undeclared identifier: 'Pec_key_st' [DCC Error] IdOpenSSLExceptions.pas(239): E2003 Undeclared identifier: 'TStringArray' D2007 not have TStringArray but have TStringDynArray

@mezen No problem, now I have installed D4, D7, D2007, XE7, XE10.4.1, so I can do tests :) D7, D2007 -> compiled OK XE10.4.1: [dcc32 Error] IdOpenSSLExceptions.pas(169): E2066 Missing operator...

Steps to reproduce: use code from examples\example_054.php before "$pdf->Output('example_054.pdf', 'D');" insert $pdf->setProtection(array(), 'test', 'test', 3, null);