Search:

Type: Posts; User: Daniel.Blesener

Search: Search took 0.01 seconds.

  1. Conceptual Question, what does, "Endpoint Register" mean?

    See the link below, page 12 for reference to my question. Below is the text where my question came from. I am working on a STM32F1 Micro, getting the USB up and running. JUST started this part of the...
  2. I couldn't wait, I went and tested it and Jim you...

    I couldn't wait, I went and tested it and Jim you were right. I will be using this forum more often. Thanks again for the help.
  3. smokeyangel - That makes sense. All the data I am...

    smokeyangel - That makes sense. All the data I am working with is uint16. ADC1_DMA1_Base is not a pointer, it is just a variable I made. I used stm32 DMA library functions to redirect all converted...
  4. *The values "transferred" are just incorrect

    *The values "transferred" are just incorrect
  5. Jim, this loop is in an interrupt. Each time the...

    Jim, this loop is in an interrupt. Each time the the proccessor completes ADC conversion for all 8 channels, the data is automatically stores in the array ADC1_DMA1C1_Base[]. For the first 100...
  6. Transfer data from 1 Dim array to 2 Dim array trouble. (embedded systems)

    I need to make a boxcar average for analog to digital conversions. I cannot do this when one array won't copy into another.



    //DEBUG TEST
    for(Channel = 0; Channel <= ADC1_NUM_OF_CHANNELS...
  7. Thank you for the response, it was very clear. No...

    Thank you for the response, it was very clear. No more help needed here.
  8. Familiar with microcontrollers???? Offset bit address meaning and implications???

    Below is a definition in a peripheral of the STM3210X Processor. In looking through peripheral drivers, I notice many segments of code which have an offset of some value. Does this effect how I enter...
  9. Replies
    8
    Views
    1,140

    I just took a small chunk off the array...

    I just took a small chunk off the array...
  10. Replies
    8
    Views
    1,140

    Aduril, thanks for the response again. I should...

    Aduril, thanks for the response again. I should have thought of that, and it works! I would explain what is going on up there but you already solved the problem : )
  11. Replies
    8
    Views
    1,140

    Actually I do have one more question though. I...

    Actually I do have one more question though. I have to define a global if the two sections of code below are defined in two different header files correct? If I try to define a bool anywhere besides...
  12. Replies
    8
    Views
    1,140

    anduril, not sure what part of the code you want...

    anduril, not sure what part of the code you want since there are 20+ thousand lines. All I have for variables is an array, 2 indexes and a bool which switches the head and tail of the circular buffer...
  13. Replies
    8
    Views
    1,140

    Variable memory allocation?

    I implemented a circular buffer using variables already written in a program. All I needed to use was ONE new bool variable. This code is so damn full I have no more memory for ONE more bool...
  14. Reentrant? Word after function? Ever seen this?

    Here is a chunk of code with multiple uses of the word reentrant AFTER a function. I have never seen this, I found some information about reentrant online, is this word just implying that these...
  15. Replies
    5
    Views
    1,943

    > Wouldn't the quickest and most reliable source...

    > Wouldn't the quickest and most reliable source of information at work be...other programmers with whom you're working? Or hell, search the source for the typedef?
    No, programmer is out of state at...
  16. Replies
    5
    Views
    1,943

    I should also not I have no idea why he is...

    I should also not I have no idea why he is putting external before defining a function...??? external is already placed before functions implicitly. This is just redundant correct?
  17. Replies
    5
    Views
    1,943

    What is this variable type????

    Below is the code for a program I am modifying at work. EXT is just replaced by external each time it is used. u8 in this program is just an 8 bit unsigned variable. Does anybody know what the V in...
  18. Thanks to all. Makes sense now. u16/u8 is...

    Thanks to all. Makes sense now. u16/u8 is unsigned type, for Raisonance products anyways.
  19. What does the syntax imply? EXAMPLE: if(VAL

    I do not understand what is happening in this statement.

    #ifdef ENABLE_TEST_POINTS//tp_write_val(u16);
    // Display a value using a test point
    void tp_write_val(u16 val)
    {
    u8 c;

    PC7_LOW;...
  20. Replies
    4
    Views
    2,622

    Thanks for the quick replies! I still do not...

    Thanks for the quick replies! I still do not understand what




    CLK_Prescaler_TypeDef;
    means though? Does it need to be there? All the statements like this have something at the end similar. ...
  21. Replies
    4
    Views
    2,622

    typedef enum statement confusion.

    Hey all, thanks for the help. This should be fairly easy for someone who understands this syntax well. I am modifying some code for work, but ran into a little confusion with the statement below,...
Results 1 to 21 of 21