Notice. New forum software under development. It's going to miss a few functions and look a bit ugly for a while, but I'm working on it full time now as the old forum was too unstable. Couple days, all good. If you notice any issues, please contact me.
|
Forum Index : Microcontroller and PC projects : PicoMite C-Subs...Does a tutorial exist?
Page 1 of 3 | |||||
Author | Message | ||||
PhenixRising Guru Joined: 07/11/2023 Location: United KingdomPosts: 856 |
Did I see one or did I dream it? |
||||
Volhout Guru Joined: 05/03/2018 Location: NetherlandsPosts: 4222 |
https://www.thebackshed.com/forum/ViewTopic.php?FID=16&TID=14126#174926 Volhout PicomiteVGA PETSCII ROBOTS |
||||
JohnS Guru Joined: 18/11/2011 Location: United KingdomPosts: 3800 |
You may need the PicoCFunctions.h from https://github.com/UKTailwind/PicoMiteAllVersions John |
||||
PhenixRising Guru Joined: 07/11/2023 Location: United KingdomPosts: 856 |
Thanks guys; got all excited about the possibility of running a CSUB on the other core (but that was dated 2021) OK, question; Assuming that I am able to get to the point of creating the actual CSUB, I'm not a C programmer (although not afraid to get into it).... For the core logic, do you think that this could be a help? I just installed it and looks pretty darned impressive. |
||||
twofingers Guru Joined: 02/06/2014 Location: GermanyPosts: 1236 |
Because I find it difficult to gather the information together, I asked ChatGPT (edited) to write an overview for the first development of CSubs. I'm sure there are still small errors, but I think it is useful as a first overview: To open the command window, press the shift key and the right mouse button in the window containing the batch file: https://www.thebackshed.com/forum/ViewTopic.php?TID=12289&P=2#151042 Important: You can't write a CFunction for Picomites! from CMM2 manual: causality ≠ correlation ≠ coincidence |
||||
PhenixRising Guru Joined: 07/11/2023 Location: United KingdomPosts: 856 |
This is looking better and better (ChatGPT) Many thanks |
||||
twofingers Guru Joined: 02/06/2014 Location: GermanyPosts: 1236 |
Anyway: I would recommend reading a textbook for the C language to understand the differences from Basic. By the way, this might also be helpful: Ch Professional Edition - an interpreter for the C language - for ARM and Raspberry PI is free for non-commercial use ... I think it's such a shame that CSUBs are so little used ... I would like to see CSUBs become more popular. Good luck! Edited 2024-09-17 06:23 by twofingers causality ≠ correlation ≠ coincidence |
||||
Mixtel90 Guru Joined: 05/10/2019 Location: United KingdomPosts: 6768 |
[rant] I rarely have a serious rant that I genuinely feel strongly about but... For <Deity>'s sake Why? You have one of the most powerful home computer BASIC language machines with loads of facilities that people used to dream of in the 1980s this is what we are supposed to be emulating, remember? ANSI C didn't appear until 1989). And you want to corrupt it by adding C? It was fair game adding short machine code routines to a 4MHz Z80 to do things like sprite handling and fast screen switching but that's taken care of now. Adding C, even if you think it's the best thing since sliced bread, ruins BASIC and makes it totally incomprehensible to anyone attempting to learn. BASIC is supposed to be an instructional language. You may as well abandon MMBasic and write everything in C++ - I think you can do that via the Arduino front end now. Have fun with your library based programming. If the challenge of writing fast, efficient BASIC is to be replaced by CSUBs then we may as well give up. [/rant] Mick Zilog Inside! nascom.info for Nascom & Gemini Preliminary MMBasic docs & my PCB designs |
||||
phil99 Guru Joined: 11/02/2018 Location: AustraliaPosts: 2134 |
Another problem is lack of compatibility with any other version of MMBasic than the one for which they were compiled. Eg. Csub LOG is an excellent PicoMite time stamp recorder but has to be re-compiled every time the firmware core is updated. I fail at this every time and rely on the charity @Disco4now to do it for me. |
||||
EDNEDN Senior Member Joined: 18/02/2023 Location: United StatesPosts: 118 |
Yes... But it is really cool that the capability is there. I wouldn't mind seeing a thread that explored how well the Basic to C translator does its job. It is a very interesting topic. The web page says: I didn't see an obvious link to download the source code. The BCX IDE is just an executable but it kind of sounds like BCX is written in Basic. If the download link for the source code was easier to find I probably would have pulled it down and started perusing the source code. Any interpretive language suffers a performance hit. Having an easy way to speed up a routine that needs a 2x speed bump is always of interest. Mostly... I was curious because I wanted to see what kind of optimizations BCX knew about. My guess is, with the speed it is doing its work, it is just doing a brute force, template based, translation. But I don't know that and I certainly would read every post in a thread discussing it. PS. I think I found the BCX source code. I've attached it to this post in case anybody else wants to play with it. It is 1.2 MB big... So it won't be straight forward to get it to run on a PicoMite. But it will keep me amused for a few days. Bcx790.zip Edited 2024-09-17 15:48 by EDNEDN |
||||
PhenixRising Guru Joined: 07/11/2023 Location: United KingdomPosts: 856 |
Back when I discovered QuickBasic, some things were still a bit sluggish and I read that it was for GW-BASIC compatibility reasons. Ethan Winer of Crescent Software produced a library of subs/functions that supplemented or replaced the QuickBasic routines. They were all pure MASM and source was provided. Ethan encouraged his customers to use his code as templates for their own developments and he even came-up with a small cartoon-like tutorial. Well the "DOS doesn't do real time" thing didn't apply to me anymore because I was able to adapt some print-spooler code to handle my high-priority I/O, @1ms in the background and it shared variables with the QuickBasic code. It even ran in a QLB (quick library) so that; even when I was pausing or single-stepping QB code in the IDE, the background task kept on running. This was a huge dev/debug time-saver. I could never dream of developing an app in 100% MASM and would never want to because QB enabled RAD (rapid application development). MMBasic is today's equivalent and on the Pico, we have the option of using ASM for the PIO. Incredible! If one relies on PIO then compatibility with other devices is already out-the-window. Having the option to further boost the performance of certain procedures takes MMBasic up a notch. Ethan's site is always interesting and he's also an audio expert |
||||
Volhout Guru Joined: 05/03/2018 Location: NetherlandsPosts: 4222 |
Phenix, I have no idea where you diversion to CSUB comes from, but if this is driven from a technical challenge that cannot be done in MMBasic, you may also ask the forum to help you. For someone who has grown up in basic, C is a different cookie. And yes, it is worth learning how to code in C since that is the basis under most, if not all, embedded code in the world. But it will take time, maybe years before you can write code like Tom, Peter, Geoff, and whoever is coding C at the moment. They also have gone through the learning curve, and depending how talented you are, you grow (and how good your teacher is). And yes, we have chatgpt as a teacher. I, for myself, am in this learning curve. Have played around (copying, altering some Arduino code) in C, and do not find it easy. But YMMV. The most anoying about C is that it is very strickt in the way the text is formatted. A space, or semicolumn, can alter the code completely. And not alway easy to spot the error, since the misaligned text is completely valid. Not error messages from the compiler. The good thing about C is that you will have to plan and think, becuase you will have to pre-define variables exactly right. If you need speed in MMBasic, use the CMM2. It is roughly 5x faster than the RP2350 pico at 252MHz, and near 10x faster than the RP2040. Volhout Edited 2024-09-17 16:11 by Volhout PicomiteVGA PETSCII ROBOTS |
||||
Mixtel90 Guru Joined: 05/10/2019 Location: United KingdomPosts: 6768 |
I'm sorry about last night's rant, but it really is something that winds me up. :) BBC BASIC got it right, I think, where the assembler listing is part of the BASIC program and you list through it together with the BASIC. That was clever as you could see what was happening more easily. But of course those programs were never intended to be run on any other platform (especially Z80 ones!) so compatibility didn't matter. I also used to get Z80 code poked into strings then execute the string. It was neat and extremely useful on the Tandy TRS80 which was no speed demon, but you could never do anything with that code. If you didn't have the printed assembly listing it was completely incomprehensible - and didn't list properly as the command codes in the strings screwed up the screen. Both of the above were things of their time though. We all put up with them because moving stuff around on screens was more than the processor could handle. (One of my pet sidelines. After the Nascom machines came the Gemini series. One of the cards was dedicated to video handling and had its own Z80 and RAM (no video chip - this was before those) to do some clever stuff. You handled it using some of the Z80 ports, which live outside the address space, so it took up zero system RAM.) Mick Zilog Inside! nascom.info for Nascom & Gemini Preliminary MMBasic docs & my PCB designs |
||||
PhenixRising Guru Joined: 07/11/2023 Location: United KingdomPosts: 856 |
Hi Harm, CMM2 doesn't have PIO. I use high resolution/frequency incremental encoders. I am only talking about code snippets, nothing major. Just like Pete created Math routines. In fact, Pete once created a PID in MMBasic but for another device. I don't expect him to do it for me because it won't be widely used. Here's what I put in BCX: CLS DIM i, j, k, q j = 10 k = 1 q = -1 FOR i = j TO k STEP q PRINT i NEXT j = 1 k = 10 q = 1 FOR i = j TO k STEP q PRINT i NEXT KEYPRESS And here's what it output: int main(int argc, char *argv[]) { hConsole=GetStdHandle(STD_OUTPUT_HANDLE); cls(); j=10; k=1; q=-1; for(i=j; (q>=0 ? i<=k : i>=k); i+=q) { printf("% d\n",(int)i); } printf("\n"); j=1; k=10; q=1; for(i=j; (q>=0 ? i<=k : i>=k); i+=q) { printf("% d\n",(int)i); } keypress(); return EXIT_SUCCESS; // End of main program } |
||||
Mixtel90 Guru Joined: 05/10/2019 Location: United KingdomPosts: 6768 |
The PIO is somewhat different to CSUBs. It's a device that's natively in the Pico version of MMBasic now and its code isn't really hidden. You are actually embedding code for a completely different processor and setting up the links for MMBasic to talk to it. IMHO CSUBs are a cop-out every bit as much as embedding Z80 code in strings on the TRS-80 was and their use should be discouraged wherever possible, even if that reduces the speed to that of interpreted BASIC. If the C source was in-line in the MMBasic program I wouldn't be going on about it (well, not as much anyway! Seeing the source and being able to make changes is a good way to learn. It's still pretty anachronistic to run C within BASIC. No computer around that period could have done it as C wasn't really around at that time.). I know, I'm an old moaner. But I'm old enough to qualify to be one. :) Mick Zilog Inside! nascom.info for Nascom & Gemini Preliminary MMBasic docs & my PCB designs |
||||
PhenixRising Guru Joined: 07/11/2023 Location: United KingdomPosts: 856 |
Hi Mick, But if the "guts" of what BCX generates can be utilized, the actual code-logic is still authored in Basic. One would still make changes in Basic (at least I would). For time critical routines, that portion of Basic can be compiled. Look at the benchmarks where we see examples of compiled C compared to Basic Imagine if we could automate the process of MMBasic->BCX->CSub. Edited 2024-09-17 18:00 by PhenixRising |
||||
matherp Guru Joined: 11/12/2012 Location: United KingdomPosts: 9100 |
How many reasons would you like for why it couldn't run as a CSUB? The concept is impracticable CSUB code must be position independent and cannot use any C library calls |
||||
PhenixRising Guru Joined: 07/11/2023 Location: United KingdomPosts: 856 |
I understand that. That code was generated to immediately execute on the PC. I am referring to things like the structure of the FOR-NEXT loop. I would never work that out in a million years Edited 2024-09-17 18:39 by PhenixRising |
||||
matherp Guru Joined: 11/12/2012 Location: United KingdomPosts: 9100 |
This is an example where the c code generated is unnecessarily complicated in order to cope with two simple cases: step >0 and step <0 for(i=j; i<=k ; i=i+q) // positive step { } for(i=j; i>=k ; i=i-q) // negative step { } Note that now the parameters map exactly onto the Basic. In fact for the simple Basic control statements the conversion to C is trivial. e.g. if blah then endif becomes if(blah){ } etc. You can learn enough C to do this in less than a couple of hours. The bits of writing/using a CSUB that are hard are precisely the things that BCX can't possibly do. |
||||
twofingers Guru Joined: 02/06/2014 Location: GermanyPosts: 1236 |
I rarely have a serious rant that I genuinely feel strongly about but... For <Deity>'s sake Why? ... With respect. I think it's nice to see that Mick (Mixtel) is the guardian of the holy grail, but I see it differently than he does. I want to try - as a black knight - to defend CSUBs here. His arguments would also apply to PIO programming (incompatibility) as well and LOG (PicoMite time stamp recorder) would be hard to imagine in pure Basic. Actually, a lot of Peter's work - which I really appreciate! - consists of writing functions that could just as easily be written in Basic or C code (CSUBs). Why does an RTC or sensor query have to be integrated into Basic? There is little compatibility with earlier versions of MMBasic. This could easily be implemented in Basic. I have worked with many programming languages in my life. I think each had its justification and advantages. For me, CSUBs are an additional option that allows us to do things that would not otherwise be possible. (E.g. Ruben's excellent text editor for CMM2). I am grateful that this option exists! We should be grateful for ANY freedom. Yes, and I think C is not easy to master, but it's only about tiny pieces of code when it comes to making something up to 100x faster. I can't really see any reason to argue. Regards Michael Edited 2024-09-17 19:46 by twofingers causality ≠ correlation ≠ coincidence |
||||
Page 1 of 3 |
Print this page |