BeagleBoard.org - bone
Beaglebone Black Industrial running Linux Debian unknown version.
Edit2: I am just starting and the Debian version is working on being updated; not sure if I will wait...
Type: Posts; User: stahta01
BeagleBoard.org - bone
Beaglebone Black Industrial running Linux Debian unknown version.
Edit2: I am just starting and the Debian version is working on being updated; not sure if I will wait...
I am going to start an embedded C project under Debian Linux in the near future.
And, I am thinking of trying to use an USB drive to store data.
What should I use as the size of buffer to save...
https://www.geeksforgeeks.org/version-control-systems/
It is sometime very hard to tell the difference between a newbie and a "help vampire"!
You are looking more like an "help vampire" than is considered good.
Tim S.
scanf("%c", &scan_string);
The above likely needs to be
scanf(" %c", &scan_string);
The space results in white spaces being skip on input.
But, the OP needs to fix the other issues,...
This link might help or might not. I did not understand the answer.
Tim S
linux - How to resolve "setsockopt(3, SOL_SOCKET, SO_MARK, [10], 4) = -1 EPERM" Operation denied for none root users -...
In C, zero is considered false.
Tim S.
C Preprocessor Directives - C and C++ Syntax Reference - Cprogramming.com
Semaphore (programming) - Wikipedia
FYI: If the string/char array is not allocated correctly using malloc or another method you might get the problem you describe.
And, after doing a char array malloc you need to do strcpy instead...
Order do you have just a single link list sorted by two things at once?
As in a sorted double link list with two things it is sorted by.
Tim S.
Are you creating an new link list with the new sorted order?
Or, are you sorting an existing link list?
Does the assignment require one of the two ways to be used or is it open to you being able to...
uint8_t[subFrameCfg->numDopplerBins] DopplerVector;
What do you think the above line does?
Or what do you want it to do?
Is this one of the lines that have an error?
Tim S.
Because you are adding a new node to the front of the list each time.
Edit: In your case you are only allocation space for a new node each time.
I suggest reading the assignment.
Tim S.
gtest is an unit testing framework also called googletest.
It is for testing C++ code!
It can test C code that can run as C++; but, in the 5 minutes looking I saw no where that said it can test...
if(total=='2')
The above is wrong because total is an integer.
You likely want
if (total == 2)
Tim S.
Release GCC 10.3.0 with FORTRAN * stahta01/mingw-org-packages * GitHub
It can build itself; and, I have most of the none JIT mingw.org patch files applied along with a few TDM mingw.org patch...
musl libc
Tim S.
Wow, I got GCC 9.2.0 to build see Release GCC9_alpha_1 * stahta01/mingw-org-packages * GitHub
Now, I need to see if it can be used to build itself.
And, I need to apply more mingw-org patch...
Report on progress on non-cross (native) GCC build:
Currently fails in building i686-pc-mingw32/libstdc++-v3 with header related "error: 'operation_not_supported' is not a member of 'std::errc'". ...
Why do you want to re-invent the wheel?
You say you have an RTOS that has task management system; why does that system not fit your needs?
Tim S.
Important mingw.org patch that was needed is "16-gratuitous-vista-usage.patch" I added "08" to number prefix.
mingw-org-packages/0816-gratuitous-vista-usage.patch at staging *...
There is a old Python Plugin that you likely will need to build in order to use; I have no idea whether the plugin is very good.
Tim S.
I am trying to make MSys2 cross-GCC and GCC packages in this repo GitHub - stahta01/mingw-org-packages: mingw.org GCC toolchain with msys2 packages
Tim S.
for(qj=0;qj<head[2].width;qj++)
for(j=0;j<head[1].height-head[2].height;j++)
In one place, j seems to be related to width in the other height!