/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/test_pattern.cc

  • Committer: Tim Marston
  • Date: 2012-03-10 01:01:54 UTC
  • Revision ID: tim@ed.am-20120310010154-lv041mt4275k5jxo
removed most OOP/inheritance crap, saved loads of space!

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * test_mode.cc
 
2
 * test_pattern.cc
3
3
 *
4
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
5
5
 *
20
20
 * You should have received a copy of the GNU Lesser General Public License
21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
 
#include "test_mode.h"
24
 
#include "display.h"
25
 
 
26
 
 
27
 
TestMode::TestMode()
28
 
    :
29
 
        MinorMode( 1 )
30
 
{
31
 
}
32
 
 
33
 
 
34
 
void TestMode::draw( int segment )
 
23
#include "test_pattern.h"
 
24
#include "common.h"
 
25
 
 
26
 
 
27
void test_pattern_draw( int segment )
35
28
{
36
29
        // turn on outside LEDs
37
 
        Display::led( 9, true );
 
30
        led( 9, true );
38
31
 
39
32
        // display segment number in binary across in the inside LEDs,
40
33
        // with the LED on pin 12 showing the least-significant bit
41
34
        for( int a = 0; a < 9; a++ )
42
 
                Display::led( 8 - a, ( segment >> a ) & 1 );
 
35
                led( 8 - a, ( segment >> a ) & 1 );
43
36
}
44
37