Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 662069
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T23:20:14+00:00 2026-05-13T23:20:14+00:00

I am writing a C program for a 8051 architecture chip and the SDCC

  • 0

I am writing a C program for a 8051 architecture chip and the SDCC compiler.

I have a structure called FilterStructure;

my code looks like this…

#define NAME_SIZE 8

typedef struct {
char Name[NAME_SIZE];
} FilterStructure;

void ReadFilterName(U8 WheelID, U8 Filter, FilterStructure* NameStructure);

int main (void)
{
    FilterStructure testStruct;
    ReadFilterName('A', 3, &testFilter);     
    ...
    ...
    return 0;
}

void ReadFilterName(U8 WheelID, U8 Filter, FilterStructure* NameStructure)
{    
    int StartOfName = 0;
    int i = 0;
    ///... do some stuff...
    for(i = 0; i < 8; i++)
    {
        NameStructure->Name[i] = FLASH_ByteRead(StartOfName + i);
    }
    return;
}

For some reason I get a link error “?ASlink-Error-Could not get 29 consecutive bytes in internal RAM for area DSEG”

If I comment out the line that says FilterStructure testStruct; the error goes away.

What does this error mean? Do I need to discard the structure when I am done with it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T23:20:15+00:00Added an answer on May 13, 2026 at 11:20 pm

    The message means that your local variable testStruct couldn’t be allocated in RAM (or DSEG that should be DATA SEGMENT of your binary), since your memory manager couldn’t find 29 consecutive bytes to allocate it.

    This is strange since your struct should be 8 bytes long.. but btw it’s nothing to do with discarding the structure, this seems a memory management problem.. I don’t know 8051 specs so well but it should be quite limited right?

    EDIT: looking at 8051 specs it seems it just has 128 bytes of RAM. This can cause the problem because the variable, declared as a local, is allocated in internal RAM while you should try to allocate it on an external RAM chip if it’s possible (using the address/data bus of the chip), but I’m not sure since this kind of microcontroller shouldn’t be used to do these things.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a program and have some code inside a string. This code
Im writing a program that should read input via stdin, so I have the
I'm writing a program for a 8051 microcontroller. In the first part of the
I have been writing a program which asks you to input two integers, which
I am writing a program that will change java code. It changes the next-line
I am writing a program in C++ where I have to calculate the value
I am writing a program using MAC OSX 10.6.6 and xcode 3.2 I have
I have tried writing program that plays a sound file but have been unsuccessful
Good day! I have met problem with synchronizing threads. I am writing program which
I am writing a program to grade C++ code that students submit. Right now

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.