HTTP Server

This week I continue the work on the SSL. After I included all the necessary files, it return errors of ‘TCB_uRam’  cannot fit the section. At first I thought it was running out of RAM space like another case that I experience before. Since the SSL is a very large file, therefore I disable all the unnecessary stack. However, after disabling most of the stack it still return the same error. By referring on the datasheet, it seems that the Read more

Introduction to Chip Design

I am officially in the midst of my internship now, and decided to try something new to me, which is chip design. I was given the tools of Atyls Spartan 6 FPGA development board for the development of chip design. The Xilinx ISE tool There are many documentations provided by Xilinx, it is just matter of time to finish all of them, or to choose the important ones and focus on them. I found that this ISE in-depth tutorial is Read more

CCD Sensors

This week I was given another task about the CCD optical sensors. CCD is called Charge-coupled device where it is capable of transforming light pattern from an image into an electric charge pattern just like an electronic image. It can collect, store and transport electrical charge from one element to another. Each pixels are represented by p-doped MOS capacitors. It is widely used in professional, medical, and scientific applications as it can provide high-quality image data. The active pixel sensors (CMOS) are used in applications with Read more

HTTP Response and Request

This week I tried to send and receive the http headers fields. For sending the header fields from the server, the task was easier since we just needed to simply send out the suitable. By referring on the microchip demo code, I wrote a code to send the required response message. The response messages of each stage were tested by using the curl command. For receiving the header messages, it was more difficult since there are general format needed to Read more

Another Leaves the Nest

Although this was not my final week (my next week is), yet this is my final blog. As next week we will be working on something different (writing tutorials), I wanted this blog to be my goodbye letter. 29 weeks are over, during which, I learned a lot, I worked a lot, I’ve got scolded A LOT, and, although now I regret it, I got into disputes with my “mentor” a lot. I am really sad that it is over Read more

TCB in FreeRTOS

Last week, I found that the value pxCurrentTCB is different from the instruction address of my task created. After discuss with Dr Shawn, he told me that the value of pxCurrentTCB should be different from the instruction address of task created inside elf file. The pxCurrentTCB is holding the stack address of a task. So I found my concept is wrong and pxCurrentTCB is holding the correct stack address. When the task created by calling function xTaskCreate, a TCB will be Read more

A New Chapter

With minimum expectation and completely blind faith I had arrived at AESTE for the beginning of my internship of 12 weeks. Just to give a background, before I proceed with my blog, I am a Bangladeshi student studying Electrical and Electronic Engineering in Malaysia and I have been here for 3 years now. It was important to mention as it is very rare for people to encounter Bangladeshi, that too a girl, studying Engineering in Malaysia. Getting back to my Read more

Memory Map of RISC-V Angel

As my colleague started to modify the linker script, I found more problems to be solved in the simulator. The RISC-V Angel Memory One of my concern this week is to set or limit the memory that could be created by the simulator, which is also the size for the RAM of simulator. The default RISC-V Angel RAM is set to 8 MiB (MegaByte), which can be calculated from Total Memory (byte) = 1 x 1024 x 1024 = 10485760 Read more

Closing Chapter

I still can’t buy the fact that this is my last time to write an official blog as AESTE intern. Yes! If you haven’t figured it out yet… I’m the type of person who hates all the goodbye thing. 🙁 I do still remember my first blog I wrote, my first days at AESTE and how nervous I was. All these memories seem like just yesterday. Time really went by so fast, almost twenty eight weeks I spent here in Read more

Finishing Touches and Bugs

Well this week I continued working on the project. Some bugs were solved, some minor modification for the code here and there and some modules and classes were added. The first issue I was working on was regarding the CodeMirror editor interface. The tabs of the editor weren’t in line. Some need a single tab and other needs double tabs to be in the same depth. The solution for this bug was straight-forward. The C++ mode that we use for Read more