Skip to content
Snippets Groups Projects
  1. Nov 21, 2012
    • Anthony Mallet's avatar
      [wip/genom3] Update to 2.99.15 · 6ab09cf1
      Anthony Mallet authored
      Changes since 2.99.14:
      
       . Added 'native' IDL keyword. The meaning is slightly different from that of
         the OMG IDL. GenoM 'native' keyowrd defines a new opaque type, that can be
         used only in codels (or IDS). The type is manipulated as a pointer by GenoM
         and the templates, and codels are responsible for the actual type
         definition or memory management. This is typically used to store types in
         the IDS that cannot be represented as IDL (external types, opaque types,
         etc.).
      
       . Renamed #pragma native to #pragma masquerade. This is to avoid confusion
         with the new 'native' IDL keyword. The #pragma purpose is also hopefully
         clearer.
      
       . Updated mappings for the IDL 'char' type. 'char's are now mapped to
         uint8_t in C/C++, so that the C 'char' type is reserved for strings.
      
       . Fixed grammar to allow compound initializers with just a doc string and no
         value.
      
       . Improved syntax error handling in the parser. In particular, missing
         semicolons or syntax erros in codels parameters should not spew loads of
         errors anymore.
      
       . Updated skeleton template to generate $component-genom.pc instead of
         lib$component_codels.pc, because the top level package is most often used in
         other genom components to include a part of the interface (rather than
         linking with the codels).
      
       . Fixed skeleton '-l c++' option for compiling codels with a C++ compiler.
      
       . Temporary disabled support for C++ codels interface. This will not be
         supported in 3.0, but remains on the TODO list. C++ codels must use the C
         interface in the meantime.
      
       . Fixed a bunch of minor bugs and added respective regression tests.
      6ab09cf1
  2. Nov 19, 2012
  3. Nov 09, 2012
  4. Nov 05, 2012
    • Anthony Mallet's avatar
      [wip/hyper] Be gentle with RAM · 0aabe71a
      Anthony Mallet authored
      Following the author's advice, re-enable this package but disable parallel
      jobs, because some files make gcc grow up to 1GB during compilation. This is an
      issue with the current setup for bulk builds.
      0aabe71a
    • Anthony Mallet's avatar
      [wip] Disconnect hyper from the build · 16166fbf
      Anthony Mallet authored
      This raises too many issues with the current bulk + virtualbox setup.
      
      gcc eats more than 1GB, especially for a couple of source files, and it either
      segfaults after reaching the datasize/stacksize limit or compiles for hours,
      preventing the rest the bulk from being properly tested.
      16166fbf
  5. Oct 31, 2012
  6. Oct 30, 2012
  7. Oct 29, 2012
  8. Oct 26, 2012
  9. Oct 23, 2012
  10. Oct 22, 2012
  11. Oct 20, 2012
  12. Oct 19, 2012
    • Anthony Mallet's avatar
      [wip/tcl-genomix] Import tcl-genomix-1.0 · 0979d903
      Anthony Mallet authored
      tcl-genomix package provides a TCL package that interacts with the genomix HTTP
      server and can control GenoM3 components.
      
      It can prompt interactively for arguments of services. Services can be invoked
      synchronously or asynchronously and callbacks can be triggered whenever
      services complete.
      
      tcl-genomix is best used in combination with the interactive eltclsh shell.
      0979d903
    • Anthony Mallet's avatar
      [wip/genomix] Import genomix-1.0 · b182b19c
      Anthony Mallet authored
      The genomix HTTP server is a generic interface between clients and genom
      components (using the generic genom C client template). Control is done be the
      mean of specific HTTP GET requests (not yet documented...).
      b182b19c
    • Anthony Mallet's avatar
      [wip/genom3-ros] Import genom3-ros-1.0 · 126e9b1b
      Anthony Mallet authored
      The genom3-ros template (see meta-pkgs/ros-base) provides a GenoM3
      template for generating ros-based components.
      126e9b1b
    • Anthony Mallet's avatar
      [wip/genom3-pocolibs] Import genom3-pocolibs-1.0 · d75a2cd4
      Anthony Mallet authored
      The genom3-pocolibs template (see middleware/pocolibs) provides a GenoM3
      template for generating pocolibs-based components.
      d75a2cd4
    • Anthony Mallet's avatar
      [wip/genom] Import genom3-2.99.14 · 8ccff79f
      Anthony Mallet authored
      The Generator of Modules GenoM is a tool to design real-time software
      architectures. It encapsulates software functions inside independent
      components. GenoM is more specifically dedicated to complex on-board systems,
      such as autonomous mobile robots or satellites, that require:
      
      . The integration of heterogeneous functions with different real-time
        constraints and algorithm complexities (control of sensors and actuators,
        data processings, task planification, etc.).
      
      . An homogeneous integration of these functions in a control architecture which
        requires coherent and predictable behaviors (starting, ending, error
        handling), and standard interfaces (configuration, control flow, data
        flow).
      
      . The management of parallelization, physical distribution and portability of
        the functions.
      
      . Simple procedures to add, modify or (re)use the functions by non-specialists
      
      GenoM generates the source code of components by using:
      
      . A generic template, common for all components. This guarantees that all
        components share the same consistent behaviour. The template itself is not
        part of GenoM, so that different template kind can be developped easily.
      
      . A formal description of the components interface. This description is based
        on a simple language using OMG IDL for data types definitions and a custom
        syntax for the description of a more detailed component model.
      
      The project is released under an open-source, BSD-like license.
      8ccff79f
Loading