Packages

An OTP application for reading and parsing GPS data written in Elixir. Will attach to an serial port, and provide positions to subscribers. Distributes positions using GenStage.

Current section

Files

Jump to
xgps lib xgps driver state.ex
Raw

lib/xgps/driver/state.ex

defmodule XGPS.Driver.State do
defstruct [
gps_data: nil,
pid: nil,
port_name: nil,
mod: nil
]
end