Sha256: c5e4f5d0744b18ed85ce666647b440612a6505c3419519f32b1801e4c0ff8b06

Contents?: true

Size: 1.33 KB

Versions: 27

Compression:

Stored size: 1.33 KB

Contents

class MemTest < ArduinoPlugin
  
  # RAD plugins are c methods, directives, external variables and assignments and calls 
  # that may be added to the main setup method
  # function prototypes not needed since we generate them automatically
  
  # directives, external variables and setup assignments and calls can be added rails style (not c style)

  # add to directives
  #plugin_directives "#define EXAMPLE 10"

  # add to external variables
  # external_variables "int foo, bar"

  # add the following to the setup method
  # add_to_setup "foo = 1";, "bar = 1;" "sub_setup();"
  
  # one or more methods may be added and prototypes are generated automatically with rake make:upload
  
  # test the memory on your arduino uncommenting the following:
  # add_to_setup "memoryTest();"
  # or adding "memoryTest()" (no semicolon) to your main sketch

int memoryTest() {
  int byteCounter = 0; // initialize a counter
  byte *byteArray; // create a pointer to a byte array
  while ( (byteArray = (byte*) malloc (byteCounter * sizeof(byte))) != NULL ) {
   byteCounter++; // if allocation was successful, then up the count for the next try
    free(byteArray); // free memory after allocating it
 }

 free(byteArray); // also free memory after the function finishes"
 return byteCounter; // send back the highest number of bytes successfully allocated
}


end

Version data entries

27 entries across 27 versions & 4 rubygems

Version Path
neo_rad-0.4.0 lib/plugins/mem_test.rb
atduskgreg-rad-0.2.5 lib/plugins/mem_test.rb
atduskgreg-rad-0.3.0.1 lib/plugins/mem_test.rb
atduskgreg-rad-0.3.1 lib/plugins/mem_test.rb
madrona-rad-0.2.2 lib/plugins/mem_test.rb
madrona-rad-0.2.3 lib/plugins/mem_test.rb
madrona-rad-0.2.4 lib/plugins/mem_test.rb
madrona-rad-0.2.5 lib/plugins/mem_test.rb
madrona-rad-0.2.6 lib/plugins/mem_test.rb
madrona-rad-0.2.7 lib/plugins/mem_test.rb
madrona-rad-0.3.1.1 lib/plugins/mem_test.rb
madrona-rad-0.3.1 lib/plugins/mem_test.rb
madrona-rad-0.3.2 lib/plugins/mem_test.rb
madrona-rad-0.3.3 lib/plugins/mem_test.rb
madrona-rad-0.3.4 lib/plugins/mem_test.rb
madrona-rad-0.3.5 lib/plugins/mem_test.rb
madrona-rad-0.3.6 lib/plugins/mem_test.rb
madrona-rad-0.3.7 lib/plugins/mem_test.rb
madrona-rad-0.3.8 lib/plugins/mem_test.rb
madrona-rad-0.3.9 lib/plugins/mem_test.rb