Skip to content
Snippets Groups Projects
Select Git revision
  • 3b2febb3ab0f74381c3286fb83190ed65da17120
  • master default
  • bufferandcomedi
  • v0.1.0
4 results

LabConnection.jl

Blame
  • LabConnection.jl 500 B
    module LabConnection
    
        module BeagleBone
            export run_server
            import Base: read
            println("Initializing BB")
            include(joinpath("BeagleBone","BeagleBone.jl"))
            include(joinpath("BeagleBone","precompile.jl"))
            println("Precompiling BB")
            precompile_bb()
            return
        end
    
        module Computer
            import Base: read, close, get, serialize
            println("Initializing Computer")
            include(joinpath("Computer","Computer.jl"))
        end
    end