Avatar

Jamie Villeneuve

  • Total activity 343
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 1 user
  • Votes 1
  • Subscriptions 162

Activity overview

Latest activity by Jamie Villeneuve
  • Jamie Villeneuve created an article,

    Linking the backend to the GUI via Storyboard IO

    On embedded systems that have memory protection, Storyboard IO can use an implementation based on inter-process communication (IPC) that allows for communication between a backend application and ...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    Release Notes 7.2

    New Features and Functionality Storyboard Designer An issue with conflict detection using the Git merge workflow has been fixed. Text alignment is respected during PSD import. Images ar...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    Release Notes 8.0

    New Features and Functionality Storyboard Designer Add new product to Designer which is called Storyboard Validator Added the ability to rem0te launch a Storyboard project on a target A...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    sbio send event

    int sbio_send_event( sbio_channel_handle_t *handle, const char *event_name, const char *event_fmt, void *event_data, int event_data_size); Sends an event on a channel that ...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    sbio destroy channel

    int sbio_destroy_channel( sbio_channel_handle_t *handle); Destroys a Storyboard IO channel. Parameters sbio_channel_handle_t A pointer to an sbio_channel_handle_t for the chann...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    sbio rem event callback

    int sbio_rem_event_callback( sbio_channel_handle_t *handle, sbio_event_callback_t callback_function, void *user_data); Removes a callback from a receive channel Parameter...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    sbio create send channel

    int sbio_create_send_channel( const char *channel_name, int flags, sbio_channel_handle_t **handle); Opens a Storyboard IO channel for sending events on. Parameters: ...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    sbio create receive channel

    int sbio_create_receive_channel( const char *channel_name, int flags, sbio_channel_handle_t **handle); Opens a Storyboard IO channel for receiving events. Note that this ...

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    Storyboard IO Wrapper API

    This section details the functions that are available in the library libsbio-wrapper.so and that are publically commented on in the header file sbio_wrapper.h

    • 1 follower
    • 0 comments
    • 0 votes
  • Jamie Villeneuve created an article,

    sbio add event callback

    int sbio_add_event_callback( sbio_channel_handle_t *handle, const char *event_name, sbio_event_callback_t callback_function, void *user_data); Adds a callback to...

    • 1 follower
    • 0 comments
    • 0 votes