my test framework
Dependencies: generic_framework
Revision 7:2256ac7bd384, committed 2019-05-01
- Comitter:
- AndersonIctus (anderson.ictus@gmail.com)
- Date:
- Wed May 01 15:54:42 2019 -0300
- Parent:
- 6:22d7b8ec507e
- Commit message:
- Roda teste incluido na LIB
Changed in this revision
generic_framework.lib | Show annotated file Show diff for this revision Revisions of this file |
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 22d7b8ec507e -r 2256ac7bd384 generic_framework.lib --- a/generic_framework.lib Wed May 01 15:07:29 2019 -0300 +++ b/generic_framework.lib Wed May 01 15:54:42 2019 -0300 @@ -1,1 +1,1 @@ -https://os.mbed.com/users/AndersonIctus/code/generic_framework/#1e6019bda876 +https://os.mbed.com/users/AndersonIctus/code/generic_framework/#c35046f358f6
diff -r 22d7b8ec507e -r 2256ac7bd384 main.cpp --- a/main.cpp Wed May 01 15:07:29 2019 -0300 +++ b/main.cpp Wed May 01 15:54:42 2019 -0300 @@ -1,13 +1,19 @@ #include "mbed.h" #include "Teste.h" +Teste t(3); + int main() { - // Test test(); - - printf("Help !! \r\n"); + t.rodaTeste(); +} - Teste test = Teste(); - test.sayHello(); +// int main() { +// // Test test(); - return 1; -} +// printf("Help !! \r\n"); + +// Teste test = Teste(); +// test.sayHello(); + +// return 1; +// }