Skip to content

Igniter installer #32

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
190 changes: 190 additions & 0 deletions lib/mix/tasks/ExAtomVM.install.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
defmodule Mix.Tasks.Exatomvm.Install do
use Igniter.Mix.Task

@example "mix igniter.new my_project --install exatomvm@github:atomvm/exatomvm && cd my_project"

@shortdoc "Add and config AtomVM"
@moduledoc """
#{@shortdoc}

## Example

```bash
#{@example}
```

"""

@impl Igniter.Mix.Task
def info(_argv, _composing_task) do
%Igniter.Mix.Task.Info{
# Groups allow for overlapping arguments for tasks by the same author
# See the generators guide for more.
group: :exatomvm,
# dependencies to add
adds_deps: [{:pythonx, "~> 0.4.0"}],
# dependencies to add and call their associated installers, if they exist
installs: [],
# An example invocation
example: @example,
# A list of environments that this should be installed in.
only: nil,
# a list of positional arguments, i.e `[:file]`
positional: [],
# Other tasks your task composes using `Igniter.compose_task`, passing in the CLI argv
# This ensures your option schema includes options from nested tasks
composes: [],
# `OptionParser` schema
schema: [],
# Default values for the options in the `schema`
defaults: [],
# CLI aliases
aliases: [],
# A list of options in the schema that are required
required: []
}
end

@impl Igniter.Mix.Task
def igniter(igniter) do
selected_instructions =
Igniter.Util.IO.select(
"What device do you want to show instructions for?\n(Project is configured for all devices - this is just for further flashing instructions):",
["ESP32", "Pico", "STM32", "All"]
)

IO.inspect(selected_instructions)

options = [
start: Igniter.Project.Module.module_name_prefix(igniter),
esp32_flash_offset: Sourceror.parse_string!("0x250000"),
stm32_flash_offset: Sourceror.parse_string!("0x8080000"),
chip: "auto",
port: "auto"
]

Igniter.update_elixir_file(igniter, "mix.exs", fn zipper ->
with {:ok, zipper} <- Igniter.Code.Function.move_to_def(zipper, :project, 0),
{:ok, zipper} <-
Igniter.Code.Keyword.put_in_keyword(
zipper,
[:atomvm],
options
) do
{:ok, zipper}
end
end)
|> Igniter.mkdir("avm_deps")
|> Igniter.Project.Module.find_and_update_module!(
Igniter.Project.Module.module_name_prefix(igniter),
fn zipper ->
case Igniter.Code.Function.move_to_def(zipper, :start, 0) do
:error ->
# start function not available, so let's create one
zipper =
Igniter.Code.Common.add_code(
zipper,
"""
def start do
IO.inspect("Hello AtomVM!")
:ok
end
""",
placement: :before
)

{:ok, zipper}

_ ->
{:ok, zipper}
end
end
)
|> output_instructions(selected_instructions)
end

defp common_intro do
"""
Your AtomVM project is now ready.
Make sure you have installed AtomVM itself on the device:
(make sure to choose the Elixir enabled build)
"""
end

defp output_instructions(igniter, selected_instructions)
when selected_instructions == "ESP32" do
igniter
|> Igniter.add_notice(selected_instructions)
|> Igniter.add_notice("""
#{common_intro()}
https://www.atomvm.net/doc/main/getting-started-guide.html#flashing-a-binary-image-to-esp32 (binary available)

you can also use the web flasher (using Chrome):
https://petermm.github.io/atomvm-web-tools/
""")
|> Igniter.add_notice("""
You are now ready to flash your project to your device using:

mix atomvm.esp32.flash

ExAtomVM will automatically download the flashing tools needed on first flash.
(port is in "auto" mode and will find first connected ESP32)

[https://github.com/atomvm/exatomvm?tab=readme-ov-file#the-atomvmesp32flash-task]
Optionally set port in the command or specify in mix.exs
mix atomvm.esp32.flash --port /dev/ttyUSB0
""")
end

defp output_instructions(igniter, selected_instructions)
when selected_instructions == "Pico" do
igniter
|> Igniter.add_notice(selected_instructions)
|> Igniter.add_notice("""
#{common_intro()}
https://www.atomvm.net/doc/main/getting-started-guide.html#flashing-a-binary-image-to-pico (binary available)

""")
|> Igniter.add_notice("""

You are then ready to flash your project to your device using:

mix atomvm.pico.flash [https://github.com/atomvm/exatomvm?tab=readme-ov-file#the-atomvmpicoflash-task]
""")
end

defp output_instructions(igniter, selected_instructions)
when selected_instructions == "STM32" do
igniter
|> Igniter.add_notice(selected_instructions)
|> Igniter.add_notice("""
#{common_intro()}
You need to build AtomVM for your board:
https://www.atomvm.net/doc/main/build-instructions.html#building-for-stm32

And have st-link installed to flash:
https://github.com/stlink-org/stlink?tab=readme-ov-file#installation
https://www.atomvm.net/doc/main/getting-started-guide.html#flashing-a-binary-image-to-stm32
""")
|> Igniter.add_notice("""
You are then ready to flash your project to your device using:

mix atomvm.stm32.flash [https://github.com/atomvm/exatomvm?tab=readme-ov-file#the-atomvmstm32flash-task]
""")
end

defp output_instructions(igniter, selected_instructions)
when selected_instructions == "All" do
igniter
|> output_instructions("ESP32")
|> output_instructions("Pico")
|> output_instructions("STM32")
end

defp is_mac? do
case :os.type() do
{:unix, :darwin} -> true
_ -> false
end
end
end
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ defmodule ExAtomVM.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:uf2tool, "1.1.0"}
{:uf2tool, "1.1.0"},
{:igniter, "~> 0.5", runtime: false, optional: true}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
Expand Down