Denis Demidov
Denis Demidov
https://www.ev3dev.org/docs/tutorials/using-docker-to-cross-compile/
https://docs.docker.com/docker-for-mac/
> Ability to mark sections of code to be templated inline What will happen to this after the first generator run? The liquid code will be replaced by normal code,...
I have no ideas. I don't see how we can make same code to be accepted both by compiler/interpreter and autogen unless its in a comment.
Here are the changes, I hope did not miss anything. Btw, thanks for opening this, it will also be useful for C++ bindings. **Motors** - Added [specification](https://github.com/ev3dev/ev3dev-lang/blob/3bfd016eb809a164dc1b0557aa639aa88d46fff4/autogen/spec.json#L346-L365) for `LargeMotor` and...
> and now we both replace that with a \* for use. Should we just make that replacement in the spec? I don't see why not. > Oh, and what's...
You should look into [autogen](https://github.com/ev3dev/ev3dev-lang/tree/develop/autogen) system first. It has ev3dev specification in [spec.json](https://github.com/ev3dev/ev3dev-lang/blob/develop/autogen/spec.json), and it can generate code from the specification with liquid template files. You can look at the...
you need to run `npm install` from `autogen` folder. If that does not work, we need to ask @WasabiFan, he is the author of autogen system.
And it will work out of ev3, no need to install it there.
Here is what you need to do: 1. Add a line for java [here](https://github.com/ev3dev/ev3dev-lang/blob/10c1c7e18cf49c4ed4e9b9a44e0f92f45bdb0e63/autogen/autogen.js#L20). You may just copy the line for `cpp` I think. This will tell autogen how its...