~gimaker/peekabot/multi-connect

« back to all changes in this revision

Viewing changes to src/Constants.cc

  • Committer: Staffan Gimåker
  • Date: 2008-07-29 18:58:20 UTC
  • Revision ID: staffan_gimker_staffan_at_gimaker.se-20080729185820-8582mmsocde3k7te
Removed support for robot files (deprectated in 0.5).

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
/**
50
50
 * \brief peekabot minor version.
51
51
 */
52
 
const uint8_t peekabot::version::PEEKABOT_VERSION_MINOR    = 5;
 
52
const uint8_t peekabot::version::PEEKABOT_VERSION_MINOR    = 6;
53
53
 
54
54
/**
55
55
 * \brief peekabot version revision.
78
78
 */
79
79
const uint32_t peekabot::version::PEEKABOT_COMPATIBLE_VERSION = (
80
80
    (0<<16) | 
81
 
    (4<<8)  | 
 
81
    (6<<8)  | 
82
82
    0);
83
83
 
84
84