05-F746-Demo_uBasic (STM32F746)

Mit diesem Demo-Projekt wird uBasic auf dem STM32F746-Discovery-Board portiert. Print ist auf Com-1 (VCP) geroutet. Mehr Infos zu uBasic findet Ihr hier: 12-uBasic-Library (STM32F746).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//--------------------------------------------------------------
// File     : main.c
// Datum    : 28.07.2015
// Version  : 1.0
// Autor    : UB
// EMail    : mc-4u(@)t-online.de
// Web      : www.mikrocontroller-4u.de
// CPU      : STM32F746
// Board    : STM32F746-Discovery-Board
// IDE      : OpenSTM32
// GCC      : 4.9 2015q2
// Module   : CubeHAL
// Funktion : Hauptprogramm
//--------------------------------------------------------------
 
 
#include "stm32_ub_system.h"
#include "stm32_ub_ubasic.h"
 
 
int main(void)
{
  ErrorStatus check;
 
  // init vom System
  UB_System_Init();
 
  // init vom uBasic
  check=UB_UBasic_Init();
  if(check==SUCCESS) {
    // Basic-Program abarbeiten
    UB_UBasic_Run();
  }
 
  while(1) {
    // nothing to do
  }
}

Hier der komplette OpenSTM32-Projektordner zum Download :


Wie hat Dir dieser Artikel gefallen?

1 Stern2 Sterne3 Sterne4 Sterne5 Sterne (Noch keine Bewertungen)
Loading...

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert