- Akku Tests und Balkonkraftwerk Speicher         
Ergebnis 1 bis 10 von 10

Thema: Suche Megaload Bootloader-file

  1. #1
    Erfahrener Benutzer Roboter-Spezialist
    Registriert seit
    01.12.2005
    Ort
    @FFM
    Alter
    47
    Beiträge
    408

    Suche Megaload Bootloader-file

    Anzeige

    Powerstation Test
    Hallo Leute
    kann mir mal bitte jemand n fertig compilierten bootloader schicken
    für Mega 16 und 32 mit 16Mhz nur Flash Version 512 Words (kein EEPROM)

    bin irgendwie zu blöd die Anpassungen selber zu machen und zu compilen
    also irgendwie steht da nirgends beschrieben wie man das comilt so das zum schluß n hex rauskommt,
    krieg ständig Fehlermeldungen beim compilen

    Vielen Dank Gruß Daniel

  2. #2
    Erfahrener Benutzer Fleißiges Mitglied
    Registriert seit
    09.11.2005
    Ort
    Ichtershausen
    Alter
    54
    Beiträge
    148
    Da scheinst du nicht der einzige zu sein, der damit Probleme hat.
    Ich kämpfe auch seit Wochen mit dem Teil. Ich mache alles exakt nach vorschrift und kann auch ohne Fehlermeldung compilieren. Nur laufen tut der bootloader nicht. Ich habe nen Atmega8 mit 6MHz, der über nen FT232 an einem USP-Port hängt.
    Wenn jemand mal ein gescheites tutorial dafür parat hat, dann wäre ich sehr dankbar. Das Mitgelieferte habe ich 1:1 befolgt und es läuft nicht!

  3. #3
    Erfahrener Benutzer Roboter-Spezialist
    Registriert seit
    01.12.2005
    Ort
    @FFM
    Alter
    47
    Beiträge
    408
    Hallo
    also ich hab jetzt lauffähige Bootloader die ich ganz einfach mit nem externen flashtool gestartet bekomme.
    Einfach hexfile wählen ,Upload klicken und schon wird mein robbie per Funk-RS232 geproggt.
    Einfach nur geil ..

    @darxon bei Interesse schick mal PN
    PS mein DSL ist grad defekt deshalb bissl geduld haben.

  4. #4
    Erfahrener Benutzer Robotik Einstein
    Registriert seit
    29.12.2005
    Ort
    Nähe Mainz
    Alter
    32
    Beiträge
    3.467
    Hast du auch einen für einen ATMEGA8 oder könntest du mir einen anpassen?
    Ich verwende einen ATMEGA8 mit 4MHz intern.
    Würde mich freuen, wenn du was für mich hast!!

    jon
    Nice to be back after two years
    www.roboterfreak.de

  5. #5
    Erfahrener Benutzer Roboter-Spezialist
    Registriert seit
    01.12.2005
    Ort
    @FFM
    Alter
    47
    Beiträge
    408
    Welche baudrate ?

  6. #6
    Erfahrener Benutzer Robotik Einstein
    Registriert seit
    29.12.2005
    Ort
    Nähe Mainz
    Alter
    32
    Beiträge
    3.467
    19200

    jon

    P.S.amit es 15 Zeichen werden noch dieser sinnlose Text.
    Nice to be back after two years
    www.roboterfreak.de

  7. #7
    Erfahrener Benutzer Roboter-Spezialist
    Registriert seit
    01.12.2005
    Ort
    @FFM
    Alter
    47
    Beiträge
    408
    hier schaus dir an die änderungen hab ich angepasst
    lies dir auch die infos durch
    gruß daniel

    Code:
    ----------------------------------------------------------------
    '                          (c) 1995-2005, MCS
    '                        Bootloader.bas
    '  This sample demonstrates how you can write your own bootloader
    '  in Bascom BASIC
    '  VERSION 2 of the BOOTLOADER. The waiting for the NAK is stretched
    '  further a bug was resolved for the M64/M128 that have a big page size
    '-----------------------------------------------------------------
    'This sample will be extended to support other chips with bootloader
    'The loader is supported from the IDE
    
    $crystal = 4000000
    '$crystal = 14745600
    $baud = 19200                                               'this loader uses serial com
    'It is VERY IMPORTANT that the baud rate matches the one of the boot loader
    'do not try to use buffered com as we can not use interrupts
    
    
    $regfile = "m8def.dat"
    Const Loaderchip = 8
    
    '$regfile = "m168def.dat"
    'Const Loaderchip = 168
    
    '$regfile = "m16def.dat"
    'Const Loaderchip = 16
    
    '$regfile = "m32def.dat"
    'Const Loaderchip = 32
    
    '$regfile = "m88def.dat"
    'Const Loaderchip = 88
    
    '$regfile = "m162def.dat"
    'Const Loaderchip = 162
    
    '$regfile = "m128def.dat"
    'Const Loaderchip = 128
    
    '$regfile = "m64def.dat"
    'Const Loaderchip = 64
    
    '$regfile = "m2561def.dat"
    'Const Loaderchip = 2561
    
    
    #if Loaderchip = 88                                         'Mega88
        $loader = $c00                                          'this address you can find in the datasheet
        'the loader address is the same as the boot vector address
        Const Maxwordbit = 5
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    
    #if Loaderchip = 168                                        'Mega168
        $loader = $1c00                                         'this address you can find in the datasheet
        'the loader address is the same as the boot vector address
        Const Maxwordbit = 6
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    
    #if Loaderchip = 32                                         ' Mega32
        $loader = $3c00                                         ' 1024 words
        Const Maxwordbit = 6                                    'Z6 is maximum bit                                   '
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    #if Loaderchip = 8                                          ' Mega8
        $loader = $c00                                          ' 1024 words
        Const Maxwordbit = 5                                    'Z5 is maximum bit                                   '
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    #if Loaderchip = 161                                        ' Mega161
        $loader = $1e00                                         ' 1024 words
        Const Maxwordbit = 6                                    'Z6 is maximum bit                                   '
    #endif
    #if Loaderchip = 162                                        ' Mega162
        $loader = $1c00                                         ' 1024 words
        Const Maxwordbit = 6                                    'Z6 is maximum bit                                   '
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    
    #if Loaderchip = 64                                         ' Mega64
        $loader = $7c00                                         ' 1024 words
        Const Maxwordbit = 7                                    'Z7 is maximum bit                                   '
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    
    #if Loaderchip = 128                                        ' Mega128
        $loader = &HFC00                                        ' 1024 words
        Const Maxwordbit = 7                                    'Z7 is maximum bit                                   '
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    
    #if Loaderchip = 2561                                       ' Mega2561
        $loader = &H1FC00                                       ' 1024 words
        Const Maxwordbit = 7                                    'Z7 is maximum bit                                   '
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    
    #if Loaderchip = 16                                         ' Mega16
        $loader = $1c00                                         ' 1024 words
        Const Maxwordbit = 6                                    'Z6 is maximum bit                                   '
        Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0
    #endif
    
    
    
    Const Maxword =(2 ^ Maxwordbit) * 2                         '128
    Const Maxwordshift = Maxwordbit + 1
    Const Debug = 0                                             ' leave this to 0
    
    #if Debug
       Print Maxword
       Print Maxwordshift
    #endif
    
    
    
    'Dim the used variables
    Dim Bstatus As Byte , Bretries As Byte , Bblock As Byte , Bblocklocal As Byte
    Dim Bcsum1 As Byte , Bcsum2 As Byte , Buf(128) As Byte , Csum As Byte
    Dim J As Byte , Spmcrval As Byte                            ' self program command byte value
    
    Dim Z As Long                                               'this is the Z pointer word
    Dim Vl As Byte , Vh As Byte                                 ' these bytes are used for the data values
    Dim Wrd As Word , Page As Word                              'these vars contain the page and word address
    Dim Bkind As Byte , Bstarted As Byte
    'Mega 88 : 32 words, 128 pages
    
    
    
    Disable Interrupts                                          'we do not use ints
    
    
    'Waitms 100                                                  'wait 100 msec sec
    'We start with receiving a file. The PC must send this binary file
    
    'some constants used in serial com
    Const Nak = &H15
    Const Ack = &H06
    Const Can = &H18
    
    'we use some leds as indication in this sample , you might want to remove it
    Config Pinb.2 = Output
    Portb.2 = 1                                                 'the stk200 has inverted logic for the leds
    Config Pinb.3 = Output
    Portb.3 = 1
    
    $timeout = 200000                                           'we use a timeout
    'When you get LOADER errors during the upload, increase the timeout value
    'for example at 16 Mhz, use 200000
    
    Bretries = 5                                                'we try 5 times
    Testfor123:
    #if Debug
        Print "Try " ; Bretries
        Print "Wait"
    #endif
    Bstatus = Waitkey()                                         'wait for the loader to send a byte
    #if Debug
       Print "Got "
    #endif
    
    Print Chr(bstatus);
    
    If Bstatus = 123 Then                                       'did we received value 123 ?
       Bkind = 0                                                'normal flash loader
       Goto Loader
    Elseif Bstatus = 124 Then                                   ' EEPROM
       Bkind = 1                                                ' EEPROM loader
       Goto Loader
    Elseif Bstatus <> 0 Then
       Decr Bretries
       If Bretries <> 0 Then Goto Testfor123                    'we test again
    End If
    
    For J = 1 To 10                                             'this is a simple indication that we start the normal reset vector
       Toggle Portb.2 : Waitms 100
    Next
    
    #if Debug
      Print "RESET"
    #endif
    Goto _reset                                                 'goto the normal reset vector at address 0
    
    
    'this is the loader routine. It is a Xmodem-checksum reception routine
    Loader:
      #if Debug
          Print "Clear buffer"
      #endif
      Do
         Bstatus = Waitkey()
      Loop Until Bstatus = 0
    
    
      For J = 1 To 3                                            'this is a simple indication that we start the normal reset vector
         Toggle Portb.2 : Waitms 50
      Next
    
      If Bkind = 0 Then
         Spmcrval = 3 : Gosub Do_spm                            ' erase  the first page
         Spmcrval = 17 : Gosub Do_spm                           ' re-enable page
      End If
    
    
    Bretries = 10                                               'number of retries
    
    Do
      Bstarted = 0                                              ' we were not started yet
      Csum = 0                                                  'checksum is 0 when we start
      Print Chr(nak);                                           ' firt time send a nack
      Do
    
        Bstatus = Waitkey()                                     'wait for statuse byte
    
        Select Case Bstatus
           Case 1:                                              ' start of heading, PC is ready to send
                Incr Bblocklocal                                'increase local block count
                Csum = 1                                        'checksum is 1
                Bblock = Waitkey() : Csum = Csum + Bblock       'get block
                Bcsum1 = Waitkey() : Csum = Csum + Bcsum1       'get checksum first byte
                For J = 1 To 128                                'get 128 bytes
                  Buf(j) = Waitkey() : Csum = Csum + Buf(j)
                Next
                Bcsum2 = Waitkey()                              'get second checksum byte
                If Bblocklocal = Bblock Then                    'are the blocks the same?
                   If Bcsum2 = Csum Then                        'is the checksum the same?
                      Gosub Writepage                           'yes go write the page
                      Print Chr(ack);                           'acknowledge
                   Else                                         'no match so send nak
                      Print Chr(nak);
                   End If
                Else
                   Print Chr(nak);                              'blocks do not match
                End If
           Case 4:                                              ' end of transmission , file is transmitted
                 If Wrd > 0 Then                                'if there was something left in the page
                     Wrd = 0                                    'Z pointer needs wrd to be 0
                     Spmcrval = 5 : Gosub Do_spm                'write page
                     Spmcrval = 17 : Gosub Do_spm               ' re-enable page
                 End If
                 Print Chr(ack);                                ' send ack and ready
    
                 Portb.3 = 0                                    ' simple indication that we are finished and ok
                 Waitms 20
                 Goto _reset                                    ' start new program
           Case &H18:                                           ' PC aborts transmission
                 Goto _reset                                    ' ready
           Case 123 : Exit Do                                   'was probably still in the buffer
           Case 124 : Exit Do
           Case Else
              Exit Do                                           ' no valid data
        End Select
      Loop
      If Bretries > 0 Then                                      'attempte left?
         Waitms 1000
         Decr Bretries                                          'decrease attempts
      Else
         Goto _reset                                            'reset chip
      End If
    Loop
    
    
    
    'write one or more pages
    Writepage:
     If Bkind = 0 Then
       For J = 1 To 128 Step 2                                  'we write 2 bytes into a page
          Vl = Buf(j) : Vh = Buf(j + 1)                         'get Low and High bytes
          lds r0, {vl}                                          'store them into r0 and r1 registers
          lds r1, {vh}
          Spmcrval = 1 : Gosub Do_spm                           'write value into page at word address
          Wrd = Wrd + 2                                         ' word address increases with 2 because LS bit of Z is not used
          If Wrd = Maxword Then                                 ' page is full
              Wrd = 0                                           'Z pointer needs wrd to be 0
              Spmcrval = 5 : Gosub Do_spm                       'write page
              Spmcrval = 17 : Gosub Do_spm                      ' re-enable page
    
              Page = Page + 1                                   'next page
              Spmcrval = 3 : Gosub Do_spm                       ' erase  next page
              Spmcrval = 17 : Gosub Do_spm                      ' re-enable page
          End If
       Next
    
     Else                                                       'eeprom
         For J = 1 To 128
           Writeeeprom Buf(j) , Wrd
           Wrd = Wrd + 1
         Next
     End If
     Toggle Portb.2 : Waitms 10 : Toggle Portb.2                'indication that we write
    Return
    
    
    Do_spm:
      Bitwait Spmcsr.0 , Reset                                  ' check for previous SPM complete
      Bitwait Eecr.1 , Reset                                    'wait for eeprom
    
      Z = Page                                                  'make equal to page
      Shift Z , Left , Maxwordshift                             'shift to proper place
      Z = Z + Wrd                                               'add word
      lds r30,{Z}
      lds r31,{Z+1}
    
      #if(loaderchip = 128) Or(loaderchip = 2561)
          lds r24,{Z+2}
          sts rampz,r24                                         ' we need to set rampz also for the M128
      #endif
    
      Spmcsr = Spmcrval                                         'assign register
      spm                                                       'this is an asm instruction
      nop
      nop
    Return
    
    
    'How you need to use this program:
    '1- compile this program
    '2- program into chip with sample elctronics Programmer
    '3- select MCS Bootloader from programmers
    '4- compile a new program for example M88.bas
    '5- press F4 and reset your micro
    ' the program will now be uploaded into the chip with Xmodem Checksum
    ' you can write your own loader.too
    'A stand alone command line loader is also available
    
    
    'How to call the bootloader from your program without a reset ???
    'Do
    '   Print "test"
    '   Waitms 1000
    '   If Inkey() = 27 Then
    '      Print "boot"
    '      Goto &H1C00
    '   End If
    'Loop
    
    'The GOTO will do the work, you need to specify the correct bootloader address
    'this is the same as the $LOADER statement.^

  8. #8
    Erfahrener Benutzer Robotik Einstein
    Registriert seit
    29.12.2005
    Ort
    Nähe Mainz
    Alter
    32
    Beiträge
    3.467
    Vielen Dank für den Bootloader!!

    jon
    Nice to be back after two years
    www.roboterfreak.de

  9. #9
    Erfahrener Benutzer Roboter Experte
    Registriert seit
    02.09.2005
    Ort
    Osnabrücker Land
    Alter
    62
    Beiträge
    534
    öhm ... bootloader in basic .. ich fall vom Glauben ab .. ich dachte daß ist nur was für asm-freaks .... ALLE ACHTUNG .. ich hab mich da noch nicht herangewagt .... und das als Zeh'ler
    Ich kann mir keine Signatur leisten - bin selbständig!

  10. #10
    Erfahrener Benutzer Roboter-Spezialist
    Registriert seit
    16.11.2003
    Beiträge
    355
    naja Basic, wandelt der Compiler auch nur in Assembler Befehle .
    Ich wäre mal am Gegenstück das auf dem PC interessiert, bzw. Infos darüber, der Bootloader der gepostet wurde, ist ja von Bascom. Aber zumindest in der Hilfe von Bascom konnte ich da leider keine Infos finden.

    Ich bin momentan dabei, mir den Bootloader für I2C umzuschreiben,deswegen wären da ein paar Infos über die Verarbeitung der Hex Files usw.

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •  

MultiPlus Wechselrichter Insel und Nulleinspeisung Conrad