LCMCore.jl icon indicating copy to clipboard operation
LCMCore.jl copied to clipboard

Low-level Julia bindings for the LCM communications library

Results 7 LCMCore.jl issues
Sort by recently updated
recently updated
newest added

@JuliaRegistrator register Patch notes: Compat for StaticArrays.jl to include v1.

We put together this example a while back and wondering if you wanted to add it to the registered `LCMCore` repo. There might be some confusion for people who do...

related to #62 but not a complete fix yet

Right now there's no call to `liblcm` implementation of [`lcm_eventlog_free_event`](https://github.com/lcm-proj/lcm/blob/master/lcm/eventlog.h#L107) . I've currently manually implemented it as: ```julia function lcm_event_destroy(event::Ptr{LCMCore.lcm_eventlog_event_t}) ccall( (:lcm_eventlog_free_event, LCMCore.liblcm), Cvoid, (Ptr{LCMCore.lcm_eventlog_event_t}, ), event ) end ```...

Hi, We had a little trouble with getting `LCMCore` to buildon 18.04. Turns out it was a simple fix: ```bash sudo apt-get install libglib2.0-dev ``` Not sure if the `dev`...