I Bought 2 rak5005/rak4631, devices which I plan to use as solar powered repeaters.
I soldered an I2C display and dropped some UF2 files, 1.2.60 and 1.2.64 both seem to work, the rak communicates with my other devices.
So far so good, now want to compile the meshtastic source code. For ESP32 it is no problem but for nRF52 Platformio terminates compilation on this error:
src/nrf52/NRF52CryptoEngine.cpp:3:10: fatal error: ocrypto_aes_ctr.h: No such file or directory
Looking for ocrypto_aes_ctr.h dependency? Check our library registry!
co@co-AMD:~/Documents/PlatformIO/Projects/Meshtastic-64$ git submodule update --init --recursive
fatal: not a git repository (or any of the parent directories): .git
But the command : git clone https://github.com/meshtastic/Meshtastic-device.git
installs version 1.3.10 which I do not want.
.
I want to stay on 1.2 until 1.3 is stable
You have any other suggestion?, because I still have the error about ocrypto_aes_ctr.h
edit:
The version.properties says:
[VERSION]
major = 1
minor = 3
build = 10
So I assume it is version 1.3.10 and not a 1.2 version
I am still very much learning git. As a Windows user I mainly use the GitHub Desktop app which makes life easy for me, but slowly trying to learn how to do things properly.